diff --git a/.env.devnet b/.env.devnet new file mode 100644 index 00000000..9e66de3c --- /dev/null +++ b/.env.devnet @@ -0,0 +1,18 @@ +source .env + +export STARKNET_RPC="http://0.0.0.0:5050/rpc" +export STARKNET_CHAIN_ID="SN_SEPOLIA" +export SALT="0x42" + +export CAIRO_VERSION=2.6.2 +export SCARB_VERSION=2.6.2 +export STARKNET_DEVNET_VERSION=0.5.0 +export STARKLI_VERSION=0.2.9 + +export STARKNET_ACCOUNT=.starkli/account_0.json +export STARKNET_ACCOUNT_ADDRESS="0x64b48806902a367c8598f4f95c305e8c1a1acba5f082d294a43793113115691" +export STARKNET_PRIVATE_KEY="0x71d7bb07b9a64f6f78ac4c816aff4da9" +export STARKNET_PUBLIC_KEY="0x39d9e6ce352ad4530a0ef5d5a18fd3303c3606a7fa6ac5b620020ad681cc33b" + +export HELLO_CLASS_HASH="0x010ca227019cc2e511a7e6519fc1f547d50e461b330fe5f448476f16c28d677a" +export HELLO_CONTRACT_ADDRESS="0x018b585732af21e763fca1048a2a91c8996b9f477cb2b85310df0a17606433f0" diff --git a/.env.katana b/.env.katana deleted file mode 100644 index 3207e8bc..00000000 --- a/.env.katana +++ /dev/null @@ -1,8 +0,0 @@ -source .env - -export STARKNET_RPC="http://0.0.0.0:5050/rpc" -export STARKNET_CHAIN_ID="KATANA" - -export STARKNET_ACCOUNT_ADDRESS="0x517ececd29116499f4a1b64b094da79ba08dfd54a3edaa316134c41f8160973" -export STARKNET_PUBLIC_KEY="0x2b191c2f3ecf685a91af7cf72a43e7b90e2e41220175de5c4f7498981b10053" -export STARKNET_PRIVATE_KEY="0x1800000000300000180000000000030000000000003006001800006600" \ No newline at end of file diff --git a/.env.mainnet b/.env.mainnet deleted file mode 100644 index 0e4096c6..00000000 --- a/.env.mainnet +++ /dev/null @@ -1,8 +0,0 @@ -source .env - -export STARKNET_RPC="https://starknet-mainnet.infura.io/v3/539ea0389b5343eb9d7acab1797b158d" -export STARKNET_CHAIN_ID="SN_MAIN" - -export STARKNET_ACCOUNT_ADDRESS="0x0289d8fae959df832fb3bb9e242d1de24f551308dd623f5685bcfb5a39eefd81" -export STARKNET_PUBLIC_KEY="0x76012593ec9645634a4f994c621c917ae87b6dc57178fd662fbd7d09ac2a77e" -export STARKNET_PRIVATE_KEY="0x2e1e36d43a15394dd59ab389aade89b4c6475e625a97d4dcf8f982ebe71e251" \ No newline at end of file diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml deleted file mode 100644 index 12eeba6c..00000000 --- a/.github/workflows/cd.yaml +++ /dev/null @@ -1,131 +0,0 @@ -name: CD - -on: - push: - branches: [main] - -env: - WORK_DIR: packages/starknet - -jobs: - dump-context: - runs-on: ubuntu-latest - steps: - - name: Dump GitHub context - env: - GITHUB_CONTEXT: ${{ toJson(github) }} - run: echo "$GITHUB_CONTEXT" - - name: Dump job context - env: - JOB_CONTEXT: ${{ toJson(job) }} - run: echo "$JOB_CONTEXT" - - name: Dump steps context - env: - STEPS_CONTEXT: ${{ toJson(steps) }} - run: echo "$STEPS_CONTEXT" - - name: Dump runner context - env: - RUNNER_CONTEXT: ${{ toJson(runner) }} - run: echo "$RUNNER_CONTEXT" - - name: Dump strategy context - env: - STRATEGY_CONTEXT: ${{ toJson(strategy) }} - run: echo "$STRATEGY_CONTEXT" - - name: Dump matrix context - env: - MATRIX_CONTEXT: ${{ toJson(matrix) }} - run: echo "$MATRIX_CONTEXT" - - name: Show default environment variables - run: | - echo "The job_id is: $GITHUB_JOB" # reference the default environment variables - echo "The id of this action is: $GITHUB_ACTION" # reference the default environment variables - echo "The run id is: $GITHUB_RUN_ID" - echo "The GitHub Actor's username is: $GITHUB_ACTOR" - echo "GitHub SHA: $GITHUB_SHA" - - # Check code formatting and static analysis on a single OS (linux) - # against dev, stable, and 2.17.3 (the package's lower bound). - analyze: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - sdk: [dev, stable, 2.17.3] - steps: - - uses: actions/checkout@v2 - - uses: dart-lang/setup-dart@v1.0 - with: - sdk: ${{ matrix.sdk }} - - id: install - name: Install dependencies - run: dart pub get - working-directory: ${{ env.WORK_DIR }} - - name: Check formatting - run: dart format --output=none --set-exit-if-changed . - if: matrix.sdk == 'dev' && steps.install.outcome == 'success' - working-directory: ${{ env.WORK_DIR }} - - name: Analyze code - run: dart analyze --fatal-infos - if: always() && steps.install.outcome == 'success' - working-directory: ${{ env.WORK_DIR }} - - # Run tests on a matrix consisting of two dimensions: - # 1. OS: ubuntu-latest - # 2. Release channel: dev, stable, and 2.17.3 (the package's lower bound) - test: - needs: analyze - defaults: - run: - working-directory: ${{ env.WORK_DIR }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest] - sdk: [dev, stable, 2.17.3] - steps: - - uses: actions/checkout@v2 - - uses: dart-lang/setup-dart@v1.0 - with: - sdk: ${{ matrix.sdk }} - - id: install - name: Install dependencies - run: dart pub get - - name: Run tests - run: dart test - if: always() && steps.install.outcome == 'success' - - name: Run Chrome tests - run: dart test --platform chrome - if: always() && steps.install.outcome == 'success' - - package-analysis: - runs-on: ubuntu-latest - defaults: - run: - working-directory: ${{ env.WORK_DIR }} - steps: - - uses: actions/checkout@v2 - - uses: axel-op/dart-package-analyzer@v3 - with: - githubToken: ${{ secrets.GITHUB_TOKEN }} - relativePath: ${{ env.WORK_DIR }} - - publish: - if: github.event.pull_request.head.repo.fork == false - needs: test - defaults: - run: - working-directory: ${{ env.WORK_DIR }} - runs-on: ubuntu-latest - steps: - - name: "Checkout" - uses: actions/checkout@v2 - # Only publishes if package version is different from the latest published on pub.dev - # See the docs: https://github.com/marketplace/actions/dart-and-flutter-package-publisher - - name: "Publish package" - uses: k-paxian/dart-package-publisher@master - with: - accessToken: ${{ secrets.OAUTH_ACCESS_TOKEN }} - refreshToken: ${{ secrets.OAUTH_REFRESH_TOKEN }} - skipTests: true # Tests have already been run before - relativePath: ${{ env.WORK_DIR }} diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9293f632..0284147e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,168 +9,34 @@ env: WORK_DIR: packages/starknet jobs: - dump-context: - runs-on: ubuntu-latest + lint: steps: - - name: Dump GitHub context - env: - GITHUB_CONTEXT: ${{ toJson(github) }} - run: echo "$GITHUB_CONTEXT" - - name: Dump job context - env: - JOB_CONTEXT: ${{ toJson(job) }} - run: echo "$JOB_CONTEXT" - - name: Dump steps context - env: - STEPS_CONTEXT: ${{ toJson(steps) }} - run: echo "$STEPS_CONTEXT" - - name: Dump runner context - env: - RUNNER_CONTEXT: ${{ toJson(runner) }} - run: echo "$RUNNER_CONTEXT" - - name: Dump strategy context - env: - STRATEGY_CONTEXT: ${{ toJson(strategy) }} - run: echo "$STRATEGY_CONTEXT" - - name: Dump matrix context - env: - MATRIX_CONTEXT: ${{ toJson(matrix) }} - run: echo "$MATRIX_CONTEXT" - - name: Show default environment variables - run: | - echo "The job_id is: $GITHUB_JOB" # reference the default environment variables - echo "The id of this action is: $GITHUB_ACTION" # reference the default environment variables - echo "The run id is: $GITHUB_RUN_ID" - echo "The GitHub Actor's username is: $GITHUB_ACTOR" - echo "GitHub SHA: $GITHUB_SHA" - - analyze: - runs-on: ubuntu-latest - steps: - - name: Print $GITHUB_CONTEXT - shell: bash - run: echo "$GITHUB_CONTEXT" - uses: actions/checkout@v2 - uses: dart-lang/setup-dart@v1.0 - with: - sdk: stable - - id: install - name: Install dependencies - run: dart pub get - working-directory: ${{ env.WORK_DIR }} - - name: Check formatting - run: dart format --output=none --set-exit-if-changed . - working-directory: ${{ env.WORK_DIR }} - - name: Analyze code - run: dart analyze --fatal-infos - if: always() && steps.install.outcome == 'success' - working-directory: ${{ env.WORK_DIR }} + - uses: bluefireteam/melos-action@v3 + - run: melos bootstrap + - run: melos format:check + - run: melos analyze test-unit: - needs: analyze - defaults: - run: - working-directory: ${{ env.WORK_DIR }} - runs-on: ubuntu-latest + needs: lint steps: - uses: actions/checkout@v2 - uses: dart-lang/setup-dart@v1.0 - with: - sdk: stable - - id: install - name: Install dependencies - run: dart pub get - - name: Run tests on testnet - run: dart test -t unit - - test-integration-testnet: - needs: analyze - defaults: - run: - working-directory: ${{ env.WORK_DIR }} - runs-on: ubuntu-latest + - uses: bluefireteam/melos-action@v3 + - run: melos bootstrap + - run: melos test:dart:unit + + test-integration: + needs: lint + services: + devnet: + image: shardlabs/starknet-devnet-rs:0.0.5 + ports: + - 5050:5050 steps: - uses: actions/checkout@v2 - uses: dart-lang/setup-dart@v1.0 - with: - sdk: stable - - id: install - name: Install dependencies - run: dart pub get - - name: Run tests on testnet - run: dart test -t integration-testnet --exclude-tags='rpc-node-bug' - - test-integration-devnet: - needs: analyze - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - # - # devnet setup - # - - name: Setup python - id: setup-python - uses: actions/setup-python@v4 - with: - python-version: "3.9" - - name: Install Poetry - uses: snok/install-poetry@v1 - with: - virtualenvs-create: true - virtualenvs-in-project: true - - name: Load cached env - id: cached-poetry-dependencies - uses: actions/cache@v3 - with: - path: .venv - key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} - - name: Install Poetry dependencies - if: steps.cached-poetry-dependencies.outputs.cache-hit != true - run: poetry install --no-interaction - - name: Start devnet - uses: JarvusInnovations/background-action@v1 - id: start-devnet - with: - run: | - poetry run devnet start & - wait-on: http://localhost:5050/is_alive - tail: true - log-output-resume: stderr - wait-for: 1m - log-output: stderr,stdout - log-output-if: failure - - name: Setup devnet - run: poetry run devnet setup - # - # End of devnet setup - # - - uses: dart-lang/setup-dart@v1.0 - with: - sdk: stable - - id: install - name: Install dependencies - run: dart pub get - working-directory: ${{ env.WORK_DIR }} - - name: Run tests on devnet - env: - NETWORK: devnet - run: dart test -t integration-devnet-040 - working-directory: ${{ env.WORK_DIR }} - - publish: - if: github.event.pull_request.head.repo.fork == false - needs: test-integration-devnet - runs-on: ubuntu-latest - steps: - - name: "Checkout" - uses: actions/checkout@v2 - # Only publishes if package version is different from the latest published on pub.dev - # See the docs: https://github.com/marketplace/actions/dart-and-flutter-package-publisher - - name: "Publish package (dry run)" - uses: k-paxian/dart-package-publisher@master - with: - accessToken: ${{ secrets.OAUTH_ACCESS_TOKEN }} - refreshToken: ${{ secrets.OAUTH_REFRESH_TOKEN }} - skipTests: true # Tests have already been run before - dryRunOnly: true - relativePath: ${{ env.WORK_DIR }} + - uses: bluefireteam/melos-action@v3 + - run: melos bootstrap + - run: melos test:dart:integration diff --git a/.gitignore b/.gitignore index 2ebb8c6f..a3a82d29 100644 --- a/.gitignore +++ b/.gitignore @@ -27,4 +27,4 @@ coverage/ !contracts/build .env.* -!.env.katana \ No newline at end of file +!.env.devnet \ No newline at end of file diff --git a/.starkli/account_0.json b/.starkli/account_0.json new file mode 100644 index 00000000..99bf1ff2 --- /dev/null +++ b/.starkli/account_0.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "variant": { + "type": "open_zeppelin", + "version": 1, + "public_key": "0x39d9e6ce352ad4530a0ef5d5a18fd3303c3606a7fa6ac5b620020ad681cc33b", + "legacy": false + }, + "deployment": { + "status": "deployed", + "class_hash": "0x61dac032f228abef9c6626f995015233097ae253a7f72d68552db02f2971b8f", + "address": "0x64b48806902a367c8598f4f95c305e8c1a1acba5f082d294a43793113115691" + } +} diff --git a/.starkli/katana-oz-0.json b/.starkli/katana-oz-0.json deleted file mode 100644 index 8048af8c..00000000 --- a/.starkli/katana-oz-0.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "variant": { - "type": "open_zeppelin", - "version": 1, - "public_key": "0x2b191c2f3ecf685a91af7cf72a43e7b90e2e41220175de5c4f7498981b10053", - "legacy": true - }, - "deployment": { - "status": "deployed", - "class_hash": "0x4d07e40e93398ed3c76981e72dd1fd22557a78ce36c0515f679e27f0bb5bc5f", - "address": "0x517ececd29116499f4a1b64b094da79ba08dfd54a3edaa316134c41f8160973" - } -} diff --git a/.tool-versions b/.tool-versions index 699063f4..b777ed17 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,2 +1 @@ -sccarb 0.7.0 -starkli 0.1.14 \ No newline at end of file +scarb 2.6.2 diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 9a735a02..622edb2c 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -3,6 +3,7 @@ "dart-code.dart-code", "gaetschwartz.build-runner", "blaxou.freezed", - "unifiedjs.vscode-mdx" + "unifiedjs.vscode-mdx", + "starkware.cairo1" ] } diff --git a/README.md b/README.md index 934f04a4..ba1b8e88 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ If you want to contribute to this project or have any suggestion, please check o poetry install ``` -If you have an error about gmp install it like this : +If you have an error about gmp install it like this : ```sh brew install gmp @@ -76,7 +76,7 @@ dart test To run the tests on **devnet** use the following command: ``` -NETWORK=devnet dart test -t integration-devnet-040 +NETWORK=devnet dart test -t integration ``` ### Release a new version to pub.dev diff --git a/assets/compiled_contracts/account.json b/assets/compiled_contracts/account.json deleted file mode 100644 index 026ba1d1..00000000 --- a/assets/compiled_contracts/account.json +++ /dev/null @@ -1,25486 +0,0 @@ -{ - "abi": [ - { - "members": [ - { - "name": "to", - "offset": 0, - "type": "felt" - }, - { - "name": "selector", - "offset": 1, - "type": "felt" - }, - { - "name": "data_offset", - "offset": 2, - "type": "felt" - }, - { - "name": "data_len", - "offset": 3, - "type": "felt" - } - ], - "name": "AccountCallArray", - "size": 4, - "type": "struct" - }, - { - "inputs": [ - { - "name": "public_key", - "type": "felt" - } - ], - "name": "constructor", - "outputs": [], - "type": "constructor" - }, - { - "inputs": [], - "name": "get_public_key", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "get_nonce", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "interfaceId", - "type": "felt" - } - ], - "name": "supportsInterface", - "outputs": [ - { - "name": "success", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "new_public_key", - "type": "felt" - } - ], - "name": "set_public_key", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "hash", - "type": "felt" - }, - { - "name": "signature_len", - "type": "felt" - }, - { - "name": "signature", - "type": "felt*" - } - ], - "name": "is_valid_signature", - "outputs": [ - { - "name": "is_valid", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "call_array_len", - "type": "felt" - }, - { - "name": "call_array", - "type": "AccountCallArray*" - }, - { - "name": "calldata_len", - "type": "felt" - }, - { - "name": "calldata", - "type": "felt*" - }, - { - "name": "nonce", - "type": "felt" - } - ], - "name": "__execute__", - "outputs": [ - { - "name": "response_len", - "type": "felt" - }, - { - "name": "response", - "type": "felt*" - } - ], - "type": "function" - } - ], - "entry_points_by_type": { - "CONSTRUCTOR": [ - { - "offset": "0x1cf", - "selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194" - } - ], - "EXTERNAL": [ - { - "offset": "0x2ad", - "selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad" - }, - { - "offset": "0x1f1", - "selector": "0x1a35984e05126dbecb7c3bb9929e7dd9106d460c59b1633739a5c733a5fb13b" - }, - { - "offset": "0x210", - "selector": "0x1ac47721ee58ba2813c2a816bca188512839a00d3970f67c05eab986b14006d" - }, - { - "offset": "0x270", - "selector": "0x28420862938116cb3bbdbedee07451ccc54d4e9412dbef71142ad1980a30941" - }, - { - "offset": "0x230", - "selector": "0x29e211664c0b63c79638fbea474206ca74016b3e9a3dc4f9ac300ffd8bdf2cd" - }, - { - "offset": "0x24a", - "selector": "0x2e3e21ff5952b2531241e37999d9c4c8b3034cccc89a202a6bf019bdf5294f9" - } - ], - "L1_HANDLER": [] - }, - "program": { - "attributes": [ - { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.register_interface" - ], - "end_pc": 201, - "flow_tracking_data": { - "ap_tracking": { - "group": 18, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 196, - "value": "ERC165: invalid interface id" - }, - { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.assert_only_self" - ], - "end_pc": 288, - "flow_tracking_data": { - "ap_tracking": { - "group": 26, - "offset": 12 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 287, - "value": "Account: caller is not this account" - }, - { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "end_pc": 337, - "flow_tracking_data": { - "ap_tracking": { - "group": 31, - "offset": 15 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 335, - "value": "Account: no reentrant call" - }, - { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "end_pc": 352, - "flow_tracking_data": { - "ap_tracking": { - "group": 31, - "offset": 46 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 351, - "value": "Account: nonce is invalid" - }, - { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "end_pc": 373, - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 44 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 371, - "value": "Account: invalid signature" - } - ], - "builtins": ["pedersen", "range_check", "ecdsa"], - "data": [ - "0x40780017fff7fff", - "0x1", - "0x208b7fff7fff7ffe", - "0x400380007ffb7ffc", - "0x400380017ffb7ffd", - "0x482680017ffb8000", - "0x3", - "0x480280027ffb8000", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffd", - "0x3", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480080007fff8000", - "0x400080007ffd7fff", - "0x482480017ffd8001", - "0x1", - "0x482480017ffd8001", - "0x1", - "0xa0680017fff7ffe", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffb", - "0x402a7ffc7ffd7fff", - "0x208b7fff7fff7ffe", - "0x208b7fff7fff7ffe", - "0x48297ffd80007ffc", - "0x20680017fff7fff", - "0x4", - "0x402780017ffc7ffc", - "0x1", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x3ffffffffffffffffffffffffffffff", - "0x480280017ffc8000", - "0x48307fff80007ffe", - "0x400280027ffc7fff", - "0x480280017ffc8000", - "0x484480017fff8000", - "0x100000000000000000000000000000000", - "0x480280007ffc8000", - "0x40317fff7ffe7ffd", - "0x482680017ffc8000", - "0x3", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x20680017fff7fff", - "0x10", - "0x480a7ffc7fff8000", - "0x482680017ffd8000", - "0x11000000000000000000000000000000000000000000000101", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48127ffe7fff8000", - "0x48287ffd80007ffe", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe7", - "0x482680017ffd8000", - "0x11000000000000000000000000000000000000000000000101", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x20680017fff7fff", - "0xc", - "0x40780017fff7fff", - "0xa", - "0x480680017fff8000", - "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeff", - "0x480a7ffc7fff8000", - "0x48287ffd80007ffe", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd8", - "0x10780017fff7fff", - "0x8", - "0x40780017fff7fff", - "0xb", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd0", - "0x480a7ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x43616c6c436f6e7472616374", - "0x400280007ff97fff", - "0x400380017ff97ffa", - "0x400380027ff97ffb", - "0x400380037ff97ffc", - "0x400380047ff97ffd", - "0x482680017ff98000", - "0x7", - "0x480280057ff98000", - "0x480280067ff98000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x47657443616c6c657241646472657373", - "0x400280007ffd7fff", - "0x482680017ffd8000", - "0x2", - "0x480280017ffd8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x476574436f6e747261637441646472657373", - "0x400280007ffd7fff", - "0x482680017ffd8000", - "0x2", - "0x480280017ffd8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x53746f7261676552656164", - "0x400280007ffc7fff", - "0x400380017ffc7ffd", - "0x482680017ffc8000", - "0x3", - "0x480280027ffc8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x53746f726167655772697465", - "0x400280007ffb7fff", - "0x400380017ffb7ffc", - "0x400380027ffb7ffd", - "0x482680017ffb8000", - "0x3", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x4765745478496e666f", - "0x400280007ffd7fff", - "0x482680017ffd8000", - "0x2", - "0x480280017ffd8000", - "0x208b7fff7fff7ffe", - "0x400380017ff97ffa", - "0x400380007ff97ffb", - "0x482680017ff98000", - "0x2", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480680017fff8000", - "0x10f6bdc8f69644775581b157f06334cb94ae302da4f6d09656c9a31f092cff6", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff76", - "0x480a7ffc7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff9b", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd0", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe2", - "0x480a7ff97fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc9", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffe00365a", - "0x20680017fff7fff", - "0x8", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd8", - "0x208b7fff7fff7ffe", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0xffffffff", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff53", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd8", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x1813aac5f5e7799684c6dc33e51f44d3627fd748c800724a184ed5be09b713e", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff92", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff8c", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x1379ac0624b939ceb9dede92211d7db5ee174fe28be72245b0a1a2abd81c98f", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff74", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff6e", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x480680017fff8000", - "0xf10dbd44", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffaf", - "0x208b7fff7fff7ffe", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff4e", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff44", - "0x40127fff7fff7ff9", - "0x48127ffe7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd1", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffad", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffcf", - "0x208b7fff7fff7ffe", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbc", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x48127ffd7fff8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff45", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x9", - "0x480a7ff57fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff14", - "0x400680017fff7fff", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffec8", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff2b", - "0x40137fff7fff8000", - "0x48127ffe7fff8000", - "0x480a7ff67fff8000", - "0x480a7ff77fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff7e", - "0x40137ffd7fff8001", - "0x40137ffe7fff8002", - "0x40137fff7fff8003", - "0x400b7ffd7fff8003", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea1", - "0x40137fff7fff8004", - "0x48127ff97fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480a80047fff8000", - "0x1104800180018000", - "0x48", - "0x480a80017fff8000", - "0x480a80027fff8000", - "0x480a7ff87fff8000", - "0x4802800580008000", - "0x4802800380008000", - "0x4802800480008000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc8", - "0x40137ffe7fff8005", - "0x400680017fff7fff", - "0x1", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x4826800180038000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff6b", - "0x40137ffe7fff8006", - "0x40137fff7fff8007", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe83", - "0x40137fff7fff8008", - "0x48127ffa7fff8000", - "0x480a7ff97fff8000", - "0x480a80047fff8000", - "0x480a80087fff8000", - "0x1104800180018000", - "0x9", - "0x48127ffe7fff8000", - "0x480a80067fff8000", - "0x480a80077fff8000", - "0x480a80057fff8000", - "0x48127ffb7fff8000", - "0x480a80087fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x20780017fff7ffb", - "0x6", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480280007ffc8000", - "0x480280017ffc8000", - "0x480280027ffc8000", - "0x480280037ffc8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeba", - "0x40137ffe7fff8000", - "0x40137fff7fff8001", - "0x40137ffd7fff8002", - "0x480a7ffd7fff8000", - "0x480a80017fff8000", - "0x480a80007fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe67", - "0x480a80027fff8000", - "0x482680017ffb8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x482680017ffc8000", - "0x4", - "0x482a80007ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe4", - "0x48127ffe7fff8000", - "0x482880007ffe8000", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffa", - "0x4", - "0x480a7ff97fff8000", - "0x208b7fff7fff7ffe", - "0x480280007ffb8000", - "0x400280007ffd7fff", - "0x480280017ffb8000", - "0x400280017ffd7fff", - "0x480280037ffb8000", - "0x400280027ffd7fff", - "0x480280027ffb8000", - "0x48327fff7ffc8000", - "0x400280037ffd7fff", - "0x480a7ff97fff8000", - "0x482680017ffa8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x482680017ffb8000", - "0x4", - "0x480a7ffc7fff8000", - "0x482680017ffd8000", - "0x4", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff43", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff3", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480280037ffb8000", - "0x480680017fff8000", - "0x0", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff3e", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x480280037ffb8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff25", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x480280037ffb8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe90", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffea", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x480280037ffb8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffee8", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff3", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480280037ffb8000", - "0x480680017fff8000", - "0x0", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffed4", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x480280027ffb8000", - "0x480280017ffd8000", - "0x400080007ffe7fff", - "0x482680017ffd8000", - "0x2", - "0x480280017ffd8000", - "0x48307fff7ffe8000", - "0x402a7ffd7ffc7fff", - "0x480280027ffb8000", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x482480017ffd8000", - "0x1", - "0x480280037ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x482680017ffd8000", - "0x2", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdc", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe3", - "0x48127ff37fff8000", - "0x48127ff37fff8000", - "0x48127ffb7fff8000", - "0x48127ff37fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff57fff8000", - "0x480a7ff67fff8000", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb4", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x4003800080007ffb", - "0x400380007ffd7ffb", - "0x402780017ffd8001", - "0x1", - "0x4826800180008000", - "0x1", - "0x40297ffb7fff8002", - "0x4826800180008000", - "0x1", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd63", - "0x480a80017fff8000", - "0x4829800080008002", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x400080007ffe7fff", - "0x482680017ffd8000", - "0x1", - "0x480280007ffd8000", - "0x484480017fff8000", - "0x4", - "0x48307fff7ffd8000", - "0x480280027ffb8000", - "0x480080007ffe8000", - "0x400080017ffe7fff", - "0x482480017ffd8000", - "0x1", - "0x480080007ffc8000", - "0x48307fff7ffe8000", - "0x482480017fff8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280027ffb8000", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x482480017ffd8000", - "0x2", - "0x480280037ffb8000", - "0x480280007ffd8000", - "0x482680017ffd8000", - "0x1", - "0x480080007ff28000", - "0x482480017ff18000", - "0x1", - "0x480080007ff58000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc0", - "0x40137ffa7fff8000", - "0x40137ffb7fff8001", - "0x40137ffd7fff8002", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc6", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x48127ffb7fff8000", - "0x480a80027fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe" - ], - "debug_info": { - "file_contents": { - "autogen/starknet/arg_processor/164ac49a4ba7621bb283de066400b7a3a6c3fcb5a82417a78c81b6ddd4e1925e.cairo": "assert [__return_value_ptr] = ret_value.success\nlet __return_value_ptr = __return_value_ptr + 1\n", - "autogen/starknet/arg_processor/1b562308a65653425ce06491fa4b4539466f3251a07e73e099d0afe86a48900e.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size\n", - "autogen/starknet/arg_processor/2311e7438f422acd27be84fafe870b01e285827c63200dabae3efa5289008fee.cairo": "let __calldata_arg_call_array_len = [__calldata_ptr]\nlet __calldata_ptr = __calldata_ptr + 1\n", - "autogen/starknet/arg_processor/2af83e2ace09380d3be2e1d366c8649a74753b790c9d2b5e425bfdf350d70145.cairo": "let __calldata_arg_nonce = [__calldata_ptr]\nlet __calldata_ptr = __calldata_ptr + 1\n", - "autogen/starknet/arg_processor/4f07c4ae795d22b6bc4426e596637ee88f870711dc3768dd8178092f4b2c0b65.cairo": "# Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_calldata_len\nlet range_check_ptr = range_check_ptr + 1\n# Create the reference.\nlet __calldata_arg_calldata = cast(__calldata_ptr, felt*)\n# Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n# following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_calldata_len * 1\n", - "autogen/starknet/arg_processor/5d2294ce8e305b1bd560f56804793340439bb863103e1ba5c235e3d08cf6d272.cairo": "let __calldata_arg_interfaceId = [__calldata_ptr]\nlet __calldata_ptr = __calldata_ptr + 1\n", - "autogen/starknet/arg_processor/5e1cc73f0b484f90bb02da164d88332b40c6f698801aa4d3c603dab22157e902.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*)\n", - "autogen/starknet/arg_processor/7bb8ebaf1adbcc95ba53cf61877f9b0182ef69b7220a3f0b03c5d57c3b051667.cairo": "# Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_call_array_len\nlet range_check_ptr = range_check_ptr + 1\n# Create the reference.\nlet __calldata_arg_call_array = cast(__calldata_ptr, openzeppelin.account.library.AccountCallArray*)\n# Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n# following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_call_array_len * 4\n", - "autogen/starknet/arg_processor/82845ad084ad423c1c2d7fd0102ea33cf14d8eea0f8091dcd0bac7c89e6ec075.cairo": "assert [__return_value_ptr] = ret_value.is_valid\nlet __return_value_ptr = __return_value_ptr + 1\n", - "autogen/starknet/arg_processor/8799496fe2567340f6719cfd30d7db5f6b8e7aa420ca97e3a3c3ccbdfbb2e674.cairo": "let __calldata_arg_calldata_len = [__calldata_ptr]\nlet __calldata_ptr = __calldata_ptr + 1\n", - "autogen/starknet/arg_processor/960ed0835c5fa83e7fde73a3a03f5fd9272c9b63199927c6476a8754ae40c556.cairo": "let __calldata_arg_new_public_key = [__calldata_ptr]\nlet __calldata_ptr = __calldata_ptr + 1\n", - "autogen/starknet/arg_processor/9a33b36f0b370727591cd73951c78dd45b374422bf83948718aa6f02ba9d5a5a.cairo": "# Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.response_len\n# Store the updated range_check_ptr as a local variable to keep it available after\n# the memcpy.\nlocal range_check_ptr = range_check_ptr + 1\n# Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr\n# Store the updated __return_value_ptr as a local variable to keep it available after\n# the memcpy.\nlocal __return_value_ptr : felt* = __return_value_ptr + ret_value.response_len * 1\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.response,\n len=ret_value.response_len * 1)\n", - "autogen/starknet/arg_processor/a46542dc358872d57a2d9f424e61d9b07a0e4c72f24e3645022494cebfb47c83.cairo": "assert [__return_value_ptr] = ret_value.res\nlet __return_value_ptr = __return_value_ptr + 1\n", - "autogen/starknet/arg_processor/af0e0ad1dbc5708a90b4c31e69f13c85f8b13b0ea898d09f3ae14676037400be.cairo": "# Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_signature_len\nlet range_check_ptr = range_check_ptr + 1\n# Create the reference.\nlet __calldata_arg_signature = cast(__calldata_ptr, felt*)\n# Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n# following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_signature_len * 1\n", - "autogen/starknet/arg_processor/dddef5deb48d77c2b777f7818c119d55373dc859a9d96120cc0b9b9d770eaaa8.cairo": "assert [__return_value_ptr] = ret_value.response_len\nlet __return_value_ptr = __return_value_ptr + 1\n", - "autogen/starknet/arg_processor/e1b7bcaf2f97aa307c8deca2578c63f05cf45d09bb1ecaaf9be0bb828fc5cb40.cairo": "let __calldata_arg_signature_len = [__calldata_ptr]\nlet __calldata_ptr = __calldata_ptr + 1\n", - "autogen/starknet/arg_processor/f3c2d3942f0f75ba7fab7e0c13e6cee1d1be8a6d9e771412e1ff56c7484dd3f4.cairo": "let __calldata_arg_hash = [__calldata_ptr]\nlet __calldata_ptr = __calldata_ptr + 1\n", - "autogen/starknet/arg_processor/f68ac5127c2e5f488e054b6e5406fbd4412fe40038204608d22aadbaf91f8427.cairo": "let __calldata_arg_public_key = [__calldata_ptr]\nlet __calldata_ptr = __calldata_ptr + 1\n", - "autogen/starknet/external/__execute__/424b26e79f70343cc02557f1fbd25745138efb26a3dc5c8b593ca765b73138b7.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]\n", - "autogen/starknet/external/__execute__/9aa866da402dc1b34ae86751a3cabb224b0d9ac08fe13c58bb079af4cd281bec.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, starkware.cairo.common.cairo_builtins.SignatureBuiltin**)]\n", - "autogen/starknet/external/__execute__/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/__execute__/c7060df96cb0acca1380ae43bf758cab727bfdf73cb5d34a93e24a9742817fda.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)]\n", - "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr, ecdsa_ptr=ecdsa_ptr}(call_array_len=__calldata_arg_call_array_len, call_array=__calldata_arg_call_array, calldata_len=__calldata_arg_calldata_len, calldata=__calldata_arg_calldata, nonce=__calldata_arg_nonce,)\nlet (range_check_ptr, retdata_size, retdata) = __execute___encode_return(ret_value, range_check_ptr)\n", - "autogen/starknet/external/__execute__/e2645b5103a9d5af449b8fe7ba025f8f981a7d85f0d6bd668f32b9064d8689dd.cairo": "func __execute__() -> (syscall_ptr : felt*, pedersen_ptr : starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr : felt, ecdsa_ptr : starkware.cairo.common.cairo_builtins.SignatureBuiltin*, size, retdata : felt*):\n alloc_locals\nend\n", - "autogen/starknet/external/__execute__/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)]\n", - "autogen/starknet/external/constructor/06e2dac6fec7b0245dd168190069dcb92ed8c79c7a1ccebce7b1343c3e526229.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)]\n", - "autogen/starknet/external/constructor/2beb1ad1a52488cb90cbb277e60f4638021fd358f9f99ca5a7a9a9c779fcfeda.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(public_key=__calldata_arg_public_key,)\n%{ memory[ap] = segments.add() %} # Allocate memory for return value.\ntempvar retdata : felt*\nlet retdata_size = 0\n", - "autogen/starknet/external/constructor/424b26e79f70343cc02557f1fbd25745138efb26a3dc5c8b593ca765b73138b7.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]\n", - "autogen/starknet/external/constructor/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/constructor/c7060df96cb0acca1380ae43bf758cab727bfdf73cb5d34a93e24a9742817fda.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)]\n", - "autogen/starknet/external/constructor/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)]\n", - "autogen/starknet/external/get_nonce/06e2dac6fec7b0245dd168190069dcb92ed8c79c7a1ccebce7b1343c3e526229.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)]\n", - "autogen/starknet/external/get_nonce/424b26e79f70343cc02557f1fbd25745138efb26a3dc5c8b593ca765b73138b7.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]\n", - "autogen/starknet/external/get_nonce/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/get_nonce/c7060df96cb0acca1380ae43bf758cab727bfdf73cb5d34a93e24a9742817fda.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)]\n", - "autogen/starknet/external/get_nonce/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)]\n", - "autogen/starknet/external/get_nonce/e66ea2d9a730c0c7d1a31a268304a4560d262e912e083a980ec218ee0d0494e3.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}()\nlet (range_check_ptr, retdata_size, retdata) = get_nonce_encode_return(ret_value, range_check_ptr)\n", - "autogen/starknet/external/get_public_key/06e2dac6fec7b0245dd168190069dcb92ed8c79c7a1ccebce7b1343c3e526229.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)]\n", - "autogen/starknet/external/get_public_key/35b83a34f1cf366b18f748c48a0832a5f033d593109cf21173864ca057c7654e.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}()\nlet (range_check_ptr, retdata_size, retdata) = get_public_key_encode_return(ret_value, range_check_ptr)\n", - "autogen/starknet/external/get_public_key/424b26e79f70343cc02557f1fbd25745138efb26a3dc5c8b593ca765b73138b7.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]\n", - "autogen/starknet/external/get_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/get_public_key/c7060df96cb0acca1380ae43bf758cab727bfdf73cb5d34a93e24a9742817fda.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)]\n", - "autogen/starknet/external/get_public_key/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)]\n", - "autogen/starknet/external/is_valid_signature/424b26e79f70343cc02557f1fbd25745138efb26a3dc5c8b593ca765b73138b7.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]\n", - "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr, ecdsa_ptr=ecdsa_ptr}(hash=__calldata_arg_hash, signature_len=__calldata_arg_signature_len, signature=__calldata_arg_signature,)\nlet (range_check_ptr, retdata_size, retdata) = is_valid_signature_encode_return(ret_value, range_check_ptr)\n", - "autogen/starknet/external/is_valid_signature/9aa866da402dc1b34ae86751a3cabb224b0d9ac08fe13c58bb079af4cd281bec.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, starkware.cairo.common.cairo_builtins.SignatureBuiltin**)]\n", - "autogen/starknet/external/is_valid_signature/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/is_valid_signature/c7060df96cb0acca1380ae43bf758cab727bfdf73cb5d34a93e24a9742817fda.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)]\n", - "autogen/starknet/external/is_valid_signature/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)]\n", - "autogen/starknet/external/return/__execute__/0c74566530ff2aa54d0b76c774b9910d9b6556a601d082a161fd500a11d65a11.cairo": "func __execute___encode_return(ret_value : (response_len : felt, response : felt*), range_check_ptr) -> (\n range_check_ptr, data_len : felt, data : felt*):\n %{ memory[ap] = segments.add() %}\n alloc_locals\n local __return_value_ptr_start : felt*\n let __return_value_ptr = __return_value_ptr_start\n with range_check_ptr:\n end\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start)\nend\n", - "autogen/starknet/external/return/get_nonce/bf93b3f24f44c1d231ee962dcd66f445400200471f41f6b8182438865c6aa329.cairo": "func get_nonce_encode_return(ret_value : (res : felt), range_check_ptr) -> (\n range_check_ptr, data_len : felt, data : felt*):\n %{ memory[ap] = segments.add() %}\n alloc_locals\n local __return_value_ptr_start : felt*\n let __return_value_ptr = __return_value_ptr_start\n with range_check_ptr:\n end\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start)\nend\n", - "autogen/starknet/external/return/get_public_key/6c88a431b3de1f686e46e7719bda3718e5ade4faed116bf334cf2c513d4a6834.cairo": "func get_public_key_encode_return(ret_value : (res : felt), range_check_ptr) -> (\n range_check_ptr, data_len : felt, data : felt*):\n %{ memory[ap] = segments.add() %}\n alloc_locals\n local __return_value_ptr_start : felt*\n let __return_value_ptr = __return_value_ptr_start\n with range_check_ptr:\n end\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start)\nend\n", - "autogen/starknet/external/return/is_valid_signature/2fd1680b9b1da76b330dfd982566c62909fb67849afa1f48d22436e00093ed60.cairo": "func is_valid_signature_encode_return(ret_value : (is_valid : felt), range_check_ptr) -> (\n range_check_ptr, data_len : felt, data : felt*):\n %{ memory[ap] = segments.add() %}\n alloc_locals\n local __return_value_ptr_start : felt*\n let __return_value_ptr = __return_value_ptr_start\n with range_check_ptr:\n end\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start)\nend\n", - "autogen/starknet/external/return/supportsInterface/0ccaafa110e9120e2b106f5b966106f81f3b3154d7181efd59d6d22304c05b8f.cairo": "func supportsInterface_encode_return(ret_value : (success : felt), range_check_ptr) -> (\n range_check_ptr, data_len : felt, data : felt*):\n %{ memory[ap] = segments.add() %}\n alloc_locals\n local __return_value_ptr_start : felt*\n let __return_value_ptr = __return_value_ptr_start\n with range_check_ptr:\n end\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start)\nend\n", - "autogen/starknet/external/set_public_key/06e2dac6fec7b0245dd168190069dcb92ed8c79c7a1ccebce7b1343c3e526229.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)]\n", - "autogen/starknet/external/set_public_key/424b26e79f70343cc02557f1fbd25745138efb26a3dc5c8b593ca765b73138b7.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]\n", - "autogen/starknet/external/set_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/set_public_key/c7060df96cb0acca1380ae43bf758cab727bfdf73cb5d34a93e24a9742817fda.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)]\n", - "autogen/starknet/external/set_public_key/e204e5e6fd17023eb90ecd048f661ddb42e9bc72687cebc566b9a5843ced08fb.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(new_public_key=__calldata_arg_new_public_key,)\n%{ memory[ap] = segments.add() %} # Allocate memory for return value.\ntempvar retdata : felt*\nlet retdata_size = 0\n", - "autogen/starknet/external/set_public_key/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)]\n", - "autogen/starknet/external/supportsInterface/06e2dac6fec7b0245dd168190069dcb92ed8c79c7a1ccebce7b1343c3e526229.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)]\n", - "autogen/starknet/external/supportsInterface/424b26e79f70343cc02557f1fbd25745138efb26a3dc5c8b593ca765b73138b7.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]\n", - "autogen/starknet/external/supportsInterface/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/supportsInterface/c7060df96cb0acca1380ae43bf758cab727bfdf73cb5d34a93e24a9742817fda.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)]\n", - "autogen/starknet/external/supportsInterface/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)]\n", - "autogen/starknet/external/supportsInterface/f42d4bdb706c65af40f5362367216470e8af3c2495211c590a9f91908a664080.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(interfaceId=__calldata_arg_interfaceId,)\nlet (range_check_ptr, retdata_size, retdata) = supportsInterface_encode_return(ret_value, range_check_ptr)\n", - "autogen/starknet/storage_var/Account_current_nonce/decl.cairo": "namespace Account_current_nonce:\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let res = 0\n call hash2\n call normalize_address\n end\n\n func read{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let storage_addr = 0\n call addr\n call storage_read\n end\n\n func write{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(value : felt):\n let storage_addr = 0\n call addr\n call storage_write\n end\nend", - "autogen/starknet/storage_var/Account_current_nonce/impl.cairo": "namespace Account_current_nonce:\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let res = 680641068382147823690491849560675892800103278811133310055689865859989991742\n return (res=res)\n end\n\n func read{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let (storage_addr) = addr()\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0)\n\n tempvar syscall_ptr = syscall_ptr\n tempvar pedersen_ptr = pedersen_ptr\n tempvar range_check_ptr = range_check_ptr\n tempvar __storage_var_temp0 : felt = __storage_var_temp0\n return ([cast(&__storage_var_temp0, felt*)])\n end\n\n func write{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(value : felt):\n let (storage_addr) = addr()\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0])\n return ()\n end\nend", - "autogen/starknet/storage_var/Account_public_key/decl.cairo": "namespace Account_public_key:\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let res = 0\n call hash2\n call normalize_address\n end\n\n func read{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let storage_addr = 0\n call addr\n call storage_read\n end\n\n func write{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(value : felt):\n let storage_addr = 0\n call addr\n call storage_write\n end\nend", - "autogen/starknet/storage_var/Account_public_key/impl.cairo": "namespace Account_public_key:\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let res = 550557492744938365112574611882025123252567779123164597803728068558738016655\n return (res=res)\n end\n\n func read{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let (storage_addr) = addr()\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0)\n\n tempvar syscall_ptr = syscall_ptr\n tempvar pedersen_ptr = pedersen_ptr\n tempvar range_check_ptr = range_check_ptr\n tempvar __storage_var_temp0 : felt = __storage_var_temp0\n return ([cast(&__storage_var_temp0, felt*)])\n end\n\n func write{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(value : felt):\n let (storage_addr) = addr()\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0])\n return ()\n end\nend", - "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo": "namespace ERC165_supported_interfaces:\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr : HashBuiltin*, range_check_ptr}(interface_id : felt) -> (res : felt):\n let res = 0\n call hash2\n call normalize_address\n end\n\n func read{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(\n interface_id : felt\n ) -> (is_supported : felt):\n let storage_addr = 0\n call addr\n call storage_read\n end\n\n func write{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(\n interface_id : felt, value : felt\n ):\n let storage_addr = 0\n call addr\n call storage_write\n end\nend", - "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo": "namespace ERC165_supported_interfaces:\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr : HashBuiltin*, range_check_ptr}(interface_id : felt) -> (res : felt):\n let res = 479559987705328862372362947504386080106579713470203672197513890426980061174\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&interface_id, felt*)[0])\n let (res) = normalize_address(addr=res)\n return (res=res)\n end\n\n func read{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(\n interface_id : felt\n ) -> (is_supported : felt):\n let (storage_addr) = addr(interface_id)\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0)\n\n tempvar syscall_ptr = syscall_ptr\n tempvar pedersen_ptr = pedersen_ptr\n tempvar range_check_ptr = range_check_ptr\n tempvar __storage_var_temp0 : felt = __storage_var_temp0\n return ([cast(&__storage_var_temp0, felt*)])\n end\n\n func write{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(\n interface_id : felt, value : felt\n ):\n let (storage_addr) = addr(interface_id)\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0])\n return ()\n end\nend" - }, - "instruction_locations": { - "0": { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 12, - "end_line": 4, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 4 - } - }, - "2": { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 5, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 5 - } - }, - "3": { - "accessible_scopes": ["starkware.cairo.common.hash", "starkware.cairo.common.hash.hash2"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 14, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 14 - } - }, - "4": { - "accessible_scopes": ["starkware.cairo.common.hash", "starkware.cairo.common.hash.hash2"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 15, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 15 - } - }, - "5": { - "accessible_scopes": ["starkware.cairo.common.hash", "starkware.cairo.common.hash.hash2"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 17, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 13, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'hash_ptr' in:" - ], - "start_col": 12, - "start_line": 13 - }, - "While expanding the reference 'hash_ptr' in:" - ], - "start_col": 20, - "start_line": 17 - } - }, - "7": { - "accessible_scopes": ["starkware.cairo.common.hash", "starkware.cairo.common.hash.hash2"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 16, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 18, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 20, - "start_line": 18 - }, - "While expanding the reference 'result' in:" - ], - "start_col": 18, - "start_line": 16 - } - }, - "8": { - "accessible_scopes": ["starkware.cairo.common.hash", "starkware.cairo.common.hash.hash2"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 18 - } - }, - "9": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 8, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 8 - } - }, - "11": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 9, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "12": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 41, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 12 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 2, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 13, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'dst' in:" - ], - "start_col": 13, - "start_line": 2 - } - }, - "13": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 2, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 13, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 44, - "start_line": 13 - }, - "While expanding the reference 'src' in:" - ], - "start_col": 26, - "start_line": 2 - } - }, - "14": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 17, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 26, - "start_line": 17 - } - }, - "15": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 17, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 17 - } - }, - "16": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 22, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "18": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 23, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 23 - } - }, - "20": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 27, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 24 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 44, - "end_line": 29, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 29 - } - }, - "22": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 31, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 31 - } - }, - "23": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 26, - "end_line": 33, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 33 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 14, - "end_line": 34, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 34 - } - }, - "24": { - "accessible_scopes": [ - "starkware.cairo.lang.compiler.lib.registers", - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 6, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" - }, - "start_col": 5, - "start_line": 6 - } - }, - "25": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_equal" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 29, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 20 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 14, - "end_line": 30, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 8, - "start_line": 30 - } - }, - "26": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_equal" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 30, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 30 - } - }, - "28": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_equal" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 32, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 32 - } - }, - "30": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_equal" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 35, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 35 - } - }, - "31": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 104, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 95 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 50, - "end_line": 106, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 36, - "start_line": 106 - } - }, - "33": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 93, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 106, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 53, - "start_line": 106 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 93 - } - }, - "34": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 106, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 36, - "start_line": 106 - } - }, - "35": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 106, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 106 - } - }, - "36": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 93, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 111, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 111 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 93 - } - }, - "37": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 111, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 111 - } - }, - "39": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 92, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 111, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 35, - "start_line": 111 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 15, - "start_line": 92 - } - }, - "40": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 111, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 111 - } - }, - "41": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 113, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 87, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 114, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 114 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 87 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 113 - } - }, - "43": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 114, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 114 - } - }, - "44": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 13, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 5, - "start_line": 13 - } - }, - "46": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 21, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 5, - "start_line": 14 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 7, - "end_line": 22, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "48": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 87, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 50, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 50 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 87 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "49": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 48, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 50, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 24, - "start_line": 50 - }, - "While expanding the reference 'x' in:" - ], - "start_col": 17, - "start_line": 48 - } - }, - "51": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 50, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 50 - } - }, - "53": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 49, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 24, - "start_line": 51 - }, - "While expanding the reference 'y' in:" - ], - "start_col": 18, - "start_line": 49 - } - }, - "55": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 87, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 50, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 87, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 51, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 51 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 87 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 50 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 87 - } - }, - "56": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 49, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 24, - "start_line": 51 - }, - "While expanding the reference 'y' in:" - ], - "start_col": 17, - "start_line": 49 - } - }, - "57": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 51, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 51 - } - }, - "59": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 52, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 21, - "start_line": 52 - } - }, - "61": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 52, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 52 - } - }, - "62": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 23, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 23 - } - }, - "64": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 57, - "end_line": 24, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 24 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 11, - "end_line": 25, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "66": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 30, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 30 - } - }, - "68": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 32, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 28, - "start_line": 32 - } - }, - "70": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 87, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 32, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 87 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "71": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 32, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 28, - "start_line": 32 - } - }, - "72": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 32, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 32 - } - }, - "74": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 25, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "76": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 26, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 26 - } - }, - "78": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 87, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 28, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 87 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "79": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 28, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 28, - "start_line": 28 - }, - "While expanding the reference 'addr' in:" - ], - "start_col": 41, - "start_line": 12 - } - }, - "80": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 28, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 28 - } - }, - "82": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 34, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 21, - "start_line": 34 - }, - "While expanding the reference 'addr' in:" - ], - "start_col": 41, - "start_line": 12 - } - }, - "83": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 34, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 34 - } - }, - "84": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 47, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 18, - "start_line": 47 - } - }, - "86": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 51, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "87": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 51, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "88": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 51, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "89": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 51, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "90": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 51, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "91": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 88, - "end_line": 52, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 52 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 54, - "end_line": 55, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 42, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 56, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 56 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 55 - } - }, - "93": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 56, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 26, - "start_line": 56 - } - }, - "94": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 73, - "end_line": 56, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 57, - "start_line": 56 - } - }, - "95": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 56, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 56 - } - }, - "96": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 90, - "end_line": 196, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 63, - "start_line": 196 - } - }, - "98": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 91, - "end_line": 196, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 196 - } - }, - "99": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 93, - "end_line": 197, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 197 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 58, - "end_line": 198, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 194, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 199, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 199 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 194 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 198 - } - }, - "101": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 199, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 28, - "start_line": 199 - } - }, - "102": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 199, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 199 - } - }, - "103": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_contract_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 270, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 65, - "start_line": 270 - } - }, - "105": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_contract_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 270, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 270 - } - }, - "106": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_contract_address" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 95, - "end_line": 271, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 271 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 60, - "end_line": 272, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 268, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 273, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 273 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 268 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 272 - } - }, - "108": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_contract_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 273, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 30, - "start_line": 273 - } - }, - "109": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_contract_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 273, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 273 - } - }, - "110": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 348, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 58, - "start_line": 348 - } - }, - "112": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 97, - "end_line": 348, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 348 - } - }, - "113": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 97, - "end_line": 348, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 348 - } - }, - "114": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 87, - "end_line": 349, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 349 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 53, - "end_line": 351, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 346, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 352, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 352 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 346 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 351 - } - }, - "116": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 352, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 19, - "start_line": 352 - } - }, - "117": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 352, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 352 - } - }, - "118": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 366, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 18, - "start_line": 366 - } - }, - "120": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 366, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 365 - } - }, - "121": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 366, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 365 - } - }, - "122": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 366, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 365 - } - }, - "123": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 88, - "end_line": 367, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 367 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 54, - "end_line": 368, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 364, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 369, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 369 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 364 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 368 - } - }, - "125": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 369, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 369 - } - }, - "126": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_tx_info" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 435, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 56, - "start_line": 435 - } - }, - "128": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_tx_info" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 435, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 435 - } - }, - "129": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_tx_info" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 86, - "end_line": 436, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 436 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 51, - "end_line": 438, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 433, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 439, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 439 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 433 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 438 - } - }, - "131": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_tx_info" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 439, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 21, - "start_line": 439 - } - }, - "132": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_tx_info" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 439, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 439 - } - }, - "133": { - "accessible_scopes": [ - "starkware.cairo.common.signature", - "starkware.cairo.common.signature.verify_ecdsa_signature" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 98, - "end_line": 10, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/signature.cairo" - }, - "start_col": 5, - "start_line": 10 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 39, - "end_line": 11, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/signature.cairo" - }, - "start_col": 5, - "start_line": 11 - } - }, - "134": { - "accessible_scopes": [ - "starkware.cairo.common.signature", - "starkware.cairo.common.signature.verify_ecdsa_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/signature.cairo" - }, - "start_col": 5, - "start_line": 12 - } - }, - "135": { - "accessible_scopes": [ - "starkware.cairo.common.signature", - "starkware.cairo.common.signature.verify_ecdsa_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 14, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/signature.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/signature.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 15, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/signature.cairo" - }, - "start_col": 5, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" - ], - "start_col": 29, - "start_line": 7 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 21, - "start_line": 14 - } - }, - "137": { - "accessible_scopes": [ - "starkware.cairo.common.signature", - "starkware.cairo.common.signature.verify_ecdsa_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 15, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/signature.cairo" - }, - "start_col": 5, - "start_line": 15 - } - }, - "138": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 36, - "start_line": 9 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "139": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 50, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "141": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 55, - "start_line": 9 - } - }, - "142": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - } - }, - "144": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "145": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 44, - "start_line": 10 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 9 - } - }, - "146": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - } - }, - "148": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 9 - } - }, - "149": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 10 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "150": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 10 - } - }, - "151": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - } - }, - "152": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 14 - } - }, - "153": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 14 - } - }, - "154": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 35, - "start_line": 17 - }, - "While expanding the reference 'interface_id' in:" - ], - "start_col": 9, - "start_line": 15 - } - }, - "155": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - } - }, - "157": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 346, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 37, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 346 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 14 - } - }, - "158": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 58, - "start_line": 18 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 17 - } - }, - "159": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 37, - "start_line": 18 - } - }, - "161": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 346, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 31, - "start_line": 20 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 18 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 346 - } - }, - "162": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 32, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 17 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "163": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 35, - "start_line": 22 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 17 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "164": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 46, - "start_line": 23 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 18 - } - }, - "165": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 24 - } - }, - "166": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 30, - "start_line": 30 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 27 - } - }, - "167": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 30, - "start_line": 30 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 27 - } - }, - "168": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 35, - "start_line": 30 - }, - "While expanding the reference 'interface_id' in:" - ], - "start_col": 9, - "start_line": 28 - } - }, - "169": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 30, - "start_line": 30 - } - }, - "171": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 364, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 364 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 27 - } - }, - "172": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 31, - "start_line": 31 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 30 - } - }, - "173": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 55, - "start_line": 31 - } - }, - "174": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 31 - } - }, - "176": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 30 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "177": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 30 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "178": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces", - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - } - }, - "179": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 22, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 12, - "start_line": 22 - } - }, - "181": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 22, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 9, - "start_line": 22 - } - }, - "183": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 18, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 18, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 23, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 13, - "start_line": 23 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 18 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 18 - } - }, - "184": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 19, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 19, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 23, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 13, - "start_line": 23 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 19 - } - }, - "185": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 20, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 20, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 23, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 13, - "start_line": 23 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 20 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 20 - } - }, - "186": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 23, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 21, - "start_line": 23 - } - }, - "188": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 23, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 13, - "start_line": 23 - } - }, - "189": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 18, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 27, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 30, - "start_line": 27 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 18 - } - }, - "190": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 19, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 27, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 30, - "start_line": 27 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 19 - } - }, - "191": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 20, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 27, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 30, - "start_line": 27 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 20 - } - }, - "192": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 21, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 27, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 63, - "start_line": 27 - }, - "While expanding the reference 'interface_id' in:" - ], - "start_col": 12, - "start_line": 21 - } - }, - "193": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 27, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 30, - "start_line": 27 - } - }, - "195": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 28, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 9, - "start_line": 28 - } - }, - "196": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 35, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 37, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 30, - "start_line": 37 - }, - "While expanding the reference 'interface_id' in:" - ], - "start_col": 12, - "start_line": 35 - } - }, - "197": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 37, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 44, - "start_line": 37 - } - }, - "199": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 37, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 13, - "start_line": 37 - } - }, - "201": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 32, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 39, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 9, - "start_line": 39 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 32 - } - }, - "202": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 33, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 39, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 9, - "start_line": 39 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 33 - } - }, - "203": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 34, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 39, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 9, - "start_line": 39 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 34 - } - }, - "204": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 35, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 39, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 43, - "start_line": 39 - }, - "While expanding the reference 'interface_id' in:" - ], - "start_col": 12, - "start_line": 35 - } - }, - "205": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 39, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 57, - "start_line": 39 - } - }, - "207": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 39, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 9, - "start_line": 39 - } - }, - "209": { - "accessible_scopes": [ - "openzeppelin.introspection.ERC165", - "openzeppelin.introspection.ERC165.ERC165", - "openzeppelin.introspection.ERC165.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 40, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "start_col": 9, - "start_line": 40 - } - }, - "210": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "211": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "212": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "214": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "215": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 12 - } - }, - "216": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 12 - } - }, - "217": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "219": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 346, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 346 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "220": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "221": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "223": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 346, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 346 - } - }, - "224": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "225": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "226": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 46, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "227": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "228": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 23 - } - }, - "229": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 23 - } - }, - "230": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "232": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 364, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 364 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "233": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "234": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "235": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "237": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "238": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "239": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_current_nonce", - "openzeppelin.account.library.Account_current_nonce.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "240": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "241": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "242": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "244": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "245": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 12 - } - }, - "246": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 12 - } - }, - "247": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "249": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 346, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 346 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "250": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "251": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "253": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 346, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 346 - } - }, - "254": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "255": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "256": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 46, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "257": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "258": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 23 - } - }, - "259": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 23 - } - }, - "260": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "262": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 364, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 364 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "263": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "264": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "265": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "267": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "268": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "269": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account_public_key", - "openzeppelin.account.library.Account_public_key.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "270": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 55, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 59, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 59 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 19 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 55 - } - }, - "271": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 56, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 59, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 59 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 56 - } - }, - "272": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 57, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 59, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 59 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 57 - } - }, - "273": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 58, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 59, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 34, - "start_line": 59 - }, - "While expanding the reference '_public_key' in:" - ], - "start_col": 11, - "start_line": 58 - } - }, - "274": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 59, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 59 - } - }, - "276": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 60, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 35, - "start_line": 60 - } - }, - "278": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 60, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 60 - } - }, - "280": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 61, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 61 - } - }, - "281": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.assert_only_self" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 68, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 268, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 69, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 22, - "start_line": 69 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 268 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 68 - } - }, - "282": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.assert_only_self" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 69, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 22, - "start_line": 69 - } - }, - "284": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.assert_only_self" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 268, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 69, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 194, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 70, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 24, - "start_line": 70 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 194 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 69 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 268 - } - }, - "285": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.assert_only_self" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 70, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 24, - "start_line": 70 - } - }, - "287": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.assert_only_self" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 72, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 13, - "start_line": 72 - } - }, - "288": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.assert_only_self" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 194, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 70, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 68, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 74, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 74 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 68 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 70 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 194 - } - }, - "289": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.assert_only_self" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 74, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 74 - } - }, - "290": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 82, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 86, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 21, - "start_line": 86 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 82 - } - }, - "291": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 83, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 86, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 21, - "start_line": 86 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 83 - } - }, - "292": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 84, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 86, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 21, - "start_line": 86 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 84 - } - }, - "293": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 86, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 21, - "start_line": 86 - } - }, - "295": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 87, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 87 - } - }, - "296": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.get_nonce" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 91, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 95, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 21, - "start_line": 95 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 91 - } - }, - "297": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.get_nonce" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 92, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 95, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 21, - "start_line": 95 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 92 - } - }, - "298": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.get_nonce" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 93, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 95, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 21, - "start_line": 95 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 93 - } - }, - "299": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.get_nonce" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 95, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 21, - "start_line": 95 - } - }, - "301": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.get_nonce" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 96, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 96 - } - }, - "302": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 104, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 68, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 108, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 108 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 68 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 104 - } - }, - "303": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 108, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 108 - } - }, - "305": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 105, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 109, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 109 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 105 - } - }, - "306": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 106, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 109, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 109 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 106 - } - }, - "307": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 107, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 109, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 34, - "start_line": 109 - }, - "While expanding the reference 'new_public_key' in:" - ], - "start_col": 11, - "start_line": 107 - } - }, - "308": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 109, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 109 - } - }, - "310": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 110, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 110 - } - }, - "311": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 118, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 127, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 29, - "start_line": 127 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 118 - } - }, - "312": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 119, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 127, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 29, - "start_line": 127 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 119 - } - }, - "313": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 120, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 127, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 29, - "start_line": 127 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 120 - } - }, - "314": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 127, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 29, - "start_line": 127 - } - }, - "316": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 121, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/signature.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 139, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 135 - }, - "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" - ], - "start_col": 29, - "start_line": 7 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 13, - "start_line": 121 - } - }, - "317": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 123, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 136, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 21, - "start_line": 136 - }, - "While expanding the reference 'hash' in:" - ], - "start_col": 13, - "start_line": 123 - } - }, - "318": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 127, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 137, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 24, - "start_line": 137 - }, - "While expanding the reference '_public_key' in:" - ], - "start_col": 14, - "start_line": 127 - } - }, - "319": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 132, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 138, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 25, - "start_line": 138 - }, - "While expanding the reference 'sig_r' in:" - ], - "start_col": 21, - "start_line": 132 - } - }, - "320": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 133, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 139, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 25, - "start_line": 139 - }, - "While expanding the reference 'sig_s' in:" - ], - "start_col": 21, - "start_line": 133 - } - }, - "321": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 139, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 135 - } - }, - "323": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 127, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 118, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 141, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 141 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 118 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 127 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "324": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 127, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 119, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 141, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 141 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 119 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 127 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - } - }, - "325": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_public_key/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 127, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 120, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 141, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 141 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 120 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 29, - "start_line": 127 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - } - }, - "326": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/cairo/common/signature.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 139, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 121, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 141, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 141 - }, - "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" - ], - "start_col": 13, - "start_line": 121 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 9, - "start_line": 135 - }, - "While trying to update the implicit return value 'ecdsa_ptr' in:" - ], - "start_col": 29, - "start_line": 7 - } - }, - "327": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 141, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 26, - "start_line": 141 - } - }, - "329": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 141, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 141 - } - }, - "330": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 157, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 157 - } - }, - "332": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 146, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 194, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 159, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 24, - "start_line": 159 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 194 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 146 - } - }, - "333": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 159, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 24, - "start_line": 159 - } - }, - "335": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 161, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 13, - "start_line": 161 - } - }, - "337": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 164, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 27, - "start_line": 164 - } - }, - "339": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 194, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 159, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 433, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 165, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 25, - "start_line": 165 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 433 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 159 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 194 - } - }, - "340": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 165, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 25, - "start_line": 165 - } - }, - "342": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 165, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 165, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 14, - "start_line": 165 - }, - "While auto generating local variable for 'tx_info'." - ], - "start_col": 14, - "start_line": 165 - } - }, - "343": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 433, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 165, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 166, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 32, - "start_line": 166 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 165 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 433 - } - }, - "344": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 147, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 166, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 32, - "start_line": 166 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 147 - } - }, - "345": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 148, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 166, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 32, - "start_line": 166 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 148 - } - }, - "346": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 166, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 32, - "start_line": 166 - } - }, - "348": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 166, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 166, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 32, - "start_line": 166 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 32, - "start_line": 166 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - } - }, - "349": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 166, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 166, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 32, - "start_line": 166 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - }, - "While auto generating local variable for 'range_check_ptr'." - ], - "start_col": 32, - "start_line": 166 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - } - }, - "350": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 166, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 166, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 14, - "start_line": 166 - }, - "While auto generating local variable for '_current_nonce'." - ], - "start_col": 14, - "start_line": 166 - } - }, - "351": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 170, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 13, - "start_line": 170 - } - }, - "352": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 174, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 31, - "start_line": 174 - } - }, - "354": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 174, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 174, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 14, - "start_line": 174 - }, - "While auto generating local variable for 'calls'." - ], - "start_col": 14, - "start_line": 174 - } - }, - "355": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 166, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 221, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 175, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 175 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 35, - "start_line": 221 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 32, - "start_line": 166 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "356": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 151, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 175, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 34, - "start_line": 175 - }, - "While expanding the reference 'call_array_len' in:" - ], - "start_col": 13, - "start_line": 151 - } - }, - "357": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 152, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 175, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 50, - "start_line": 175 - }, - "While expanding the reference 'call_array' in:" - ], - "start_col": 13, - "start_line": 152 - } - }, - "358": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 154, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 175, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 62, - "start_line": 175 - }, - "While expanding the reference 'calldata' in:" - ], - "start_col": 13, - "start_line": 154 - } - }, - "359": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 174, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 174, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 175, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 72, - "start_line": 175 - }, - "While expanding the reference 'calls' in:" - ], - "start_col": 14, - "start_line": 174 - }, - "While auto generating local variable for 'calls'." - ], - "start_col": 14, - "start_line": 174 - } - }, - "360": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 175, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 175 - } - }, - "362": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 166, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 166, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 119, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 112, - "end_line": 179, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 26, - "start_line": 179 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 119 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 32, - "start_line": 166 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 32, - "start_line": 166 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - } - }, - "363": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 166, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 166, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 120, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 112, - "end_line": 179, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 26, - "start_line": 179 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 120 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 32, - "start_line": 166 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - }, - "While auto generating local variable for 'range_check_ptr'." - ], - "start_col": 32, - "start_line": 166 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - } - }, - "364": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 149, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 121, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 112, - "end_line": 179, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 26, - "start_line": 179 - }, - "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" - ], - "start_col": 13, - "start_line": 121 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 13, - "start_line": 149 - } - }, - "365": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 179, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 45, - "start_line": 179 - } - }, - "366": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 179, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 71, - "start_line": 179 - } - }, - "367": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 111, - "end_line": 179, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 94, - "start_line": 179 - } - }, - "368": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 112, - "end_line": 179, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 26, - "start_line": 179 - } - }, - "370": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 121, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 112, - "end_line": 179, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 121, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 112, - "end_line": 179, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 26, - "start_line": 179 - }, - "While trying to update the implicit return value 'ecdsa_ptr' in:" - ], - "start_col": 13, - "start_line": 121 - }, - "While auto generating local variable for 'ecdsa_ptr'." - ], - "start_col": 26, - "start_line": 179 - }, - "While trying to update the implicit return value 'ecdsa_ptr' in:" - ], - "start_col": 13, - "start_line": 121 - } - }, - "371": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 181, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 13, - "start_line": 181 - } - }, - "373": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 118, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 112, - "end_line": 179, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 185, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 185 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 19 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 179 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 118 - } - }, - "374": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 119, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 112, - "end_line": 179, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 185, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 185 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 26, - "start_line": 179 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 119 - } - }, - "375": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 120, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 112, - "end_line": 179, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 185, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 185 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 26, - "start_line": 179 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 120 - } - }, - "376": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 185, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 37, - "start_line": 185 - } - }, - "378": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 185, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 185 - } - }, - "380": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 185, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 185, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 185 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 9, - "start_line": 185 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - } - }, - "381": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 185, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 185, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 185 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 19 - }, - "While auto generating local variable for 'range_check_ptr'." - ], - "start_col": 9, - "start_line": 185 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 19 - } - }, - "382": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 188, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 34, - "start_line": 188 - } - }, - "384": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 188, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 188, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 14, - "start_line": 188 - }, - "While auto generating local variable for 'response'." - ], - "start_col": 14, - "start_line": 188 - } - }, - "385": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 185, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 194, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 189, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 30, - "start_line": 189 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 194 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 185 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 19 - } - }, - "386": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 151, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 176, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 189, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 44, - "start_line": 189 - }, - "While expanding the reference 'calls_len' in:" - ], - "start_col": 25, - "start_line": 176 - }, - "While expanding the reference 'call_array_len' in:" - ], - "start_col": 13, - "start_line": 151 - } - }, - "387": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 174, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 174, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 189, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 55, - "start_line": 189 - }, - "While expanding the reference 'calls' in:" - ], - "start_col": 14, - "start_line": 174 - }, - "While auto generating local variable for 'calls'." - ], - "start_col": 14, - "start_line": 174 - } - }, - "388": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 188, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 188, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 189, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 62, - "start_line": 189 - }, - "While expanding the reference 'response' in:" - ], - "start_col": 14, - "start_line": 188 - }, - "While auto generating local variable for 'response'." - ], - "start_col": 14, - "start_line": 188 - } - }, - "389": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 189, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 30, - "start_line": 189 - } - }, - "391": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 194, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 189, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 146, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 191, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 191 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 146 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 189 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 194 - } - }, - "392": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 185, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 185, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 147, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 191, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 191 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 147 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 185 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 9, - "start_line": 185 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - } - }, - "393": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 185, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Account_current_nonce/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 185, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 148, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 191, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 191 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 148 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 185 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 19 - }, - "While auto generating local variable for 'range_check_ptr'." - ], - "start_col": 9, - "start_line": 185 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 19 - } - }, - "394": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 121, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 112, - "end_line": 179, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 121, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 112, - "end_line": 179, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 149, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 191, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 191 - }, - "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" - ], - "start_col": 13, - "start_line": 149 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 26, - "start_line": 179 - }, - "While trying to update the implicit return value 'ecdsa_ptr' in:" - ], - "start_col": 13, - "start_line": 121 - }, - "While auto generating local variable for 'ecdsa_ptr'." - ], - "start_col": 26, - "start_line": 179 - }, - "While trying to update the implicit return value 'ecdsa_ptr' in:" - ], - "start_col": 13, - "start_line": 121 - } - }, - "395": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 189, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 191, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 30, - "start_line": 191 - }, - "While expanding the reference 'response_len' in:" - ], - "start_col": 14, - "start_line": 189 - } - }, - "396": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 188, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 188, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 191, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 53, - "start_line": 191 - }, - "While expanding the reference 'response' in:" - ], - "start_col": 14, - "start_line": 188 - }, - "While auto generating local variable for 'response'." - ], - "start_col": 14, - "start_line": 188 - } - }, - "397": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account.execute" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 191, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 191 - } - }, - "398": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 199, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 199 - } - }, - "400": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 202, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 202 - } - }, - "402": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 194, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 194, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 203, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 12, - "start_line": 203 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 194 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 194 - } - }, - "403": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 203, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 20, - "start_line": 203 - } - }, - "405": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 203, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 12, - "start_line": 203 - } - }, - "406": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 194, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 42, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 213, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 19, - "start_line": 208 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 194 - } - }, - "407": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 209, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 30, - "start_line": 209 - } - }, - "408": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 210, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 31, - "start_line": 210 - } - }, - "409": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 211, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 27, - "start_line": 211 - } - }, - "410": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 212, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 22, - "start_line": 212 - } - }, - "411": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 213, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 19, - "start_line": 208 - } - }, - "413": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 208, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 208, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 13, - "start_line": 208 - }, - "While auto generating local variable for 'res'." - ], - "start_col": 13, - "start_line": 208 - } - }, - "414": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 208, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 208, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 13, - "start_line": 208 - }, - "While auto generating local variable for 'res'." - ], - "start_col": 13, - "start_line": 208 - } - }, - "415": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 42, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 213, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 42, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 213, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 19, - "start_line": 208 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 19, - "start_line": 208 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - } - }, - "416": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 197, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 215, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 16, - "start_line": 215 - }, - "While expanding the reference 'response' in:" - ], - "start_col": 13, - "start_line": 197 - } - }, - "417": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 215, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 26, - "start_line": 215 - } - }, - "418": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 215, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 39, - "start_line": 215 - } - }, - "419": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 215, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 215 - } - }, - "421": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 42, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 213, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 42, - "input_file": { - "filename": "/Users/janek/.pyenv/versions/3.7.13/lib/python3.7/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 213, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 194, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 106, - "end_line": 217, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 30, - "start_line": 217 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 194 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 208 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 19, - "start_line": 208 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - } - }, - "422": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 217, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 44, - "start_line": 217 - } - }, - "424": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 217, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 59, - "start_line": 217 - } - }, - "426": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 105, - "end_line": 217, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 78, - "start_line": 217 - } - }, - "427": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 106, - "end_line": 217, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 30, - "start_line": 217 - } - }, - "429": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 194, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 106, - "end_line": 217, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 194, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 218, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 218 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 194 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 217 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 194 - } - }, - "430": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 218, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 17, - "start_line": 218 - } - }, - "431": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._execute_list" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 218, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 218 - } - }, - "432": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 228, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 228 - } - }, - "434": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 221, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 221, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 229, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 12, - "start_line": 229 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 35, - "start_line": 221 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 35, - "start_line": 221 - } - }, - "435": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 229, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 12, - "start_line": 229 - } - }, - "436": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 234, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 20, - "start_line": 234 - } - }, - "437": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 238, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 233 - } - }, - "438": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 235, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 26, - "start_line": 235 - } - }, - "439": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 238, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 233 - } - }, - "440": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 236, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 30, - "start_line": 236 - } - }, - "441": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 238, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 233 - } - }, - "442": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 237, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 37, - "start_line": 237 - } - }, - "443": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 237, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 26, - "start_line": 237 - } - }, - "444": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 238, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 233 - } - }, - "445": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 221, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 221, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 118, - "end_line": 240, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 240 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 35, - "start_line": 221 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 35, - "start_line": 221 - } - }, - "446": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 240, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 34, - "start_line": 240 - } - }, - "448": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 88, - "end_line": 240, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 54, - "start_line": 240 - } - }, - "450": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 224, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 98, - "end_line": 240, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 90, - "start_line": 240 - }, - "While expanding the reference 'calldata' in:" - ], - "start_col": 13, - "start_line": 224 - } - }, - "451": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 117, - "end_line": 240, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 100, - "start_line": 240 - } - }, - "453": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 118, - "end_line": 240, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 240 - } - }, - "455": { - "accessible_scopes": [ - "openzeppelin.account.library", - "openzeppelin.account.library.Account", - "openzeppelin.account.library.Account._from_call_array_to_call" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 241, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "start_col": 9, - "start_line": 241 - } - }, - "456": { - "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 18, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 55, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 22, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 5, - "start_line": 22 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 55 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 18 - } - }, - "457": { - "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 19, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 56, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 22, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 5, - "start_line": 22 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 56 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 19 - } - }, - "458": { - "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 20, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 57, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 22, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 5, - "start_line": 22 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 57 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 20 - } - }, - "459": { - "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 21, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 22, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 25, - "start_line": 22 - }, - "While expanding the reference 'public_key' in:" - ], - "start_col": 7, - "start_line": 21 - } - }, - "460": { - "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 22, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "462": { - "accessible_scopes": ["__main__", "__main__", "__main__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 23, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 5, - "start_line": 23 - } - }, - "463": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/f68ac5127c2e5f488e054b6e5406fbd4412fe40038204608d22aadbaf91f8427.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 21, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/5e1cc73f0b484f90bb02da164d88332b40c6f698801aa4d3c603dab22157e902.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1b562308a65653425ce06491fa4b4539466f3251a07e73e099d0afe86a48900e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 17 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 7, - "start_line": 21 - }, - "While handling calldata argument 'public_key'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "465": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1b562308a65653425ce06491fa4b4539466f3251a07e73e099d0afe86a48900e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "466": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/c7060df96cb0acca1380ae43bf758cab727bfdf73cb5d34a93e24a9742817fda.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 18, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/2beb1ad1a52488cb90cbb277e60f4638021fd358f9f99ca5a7a9a9c779fcfeda.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 18 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "467": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/424b26e79f70343cc02557f1fbd25745138efb26a3dc5c8b593ca765b73138b7.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 19, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/2beb1ad1a52488cb90cbb277e60f4638021fd358f9f99ca5a7a9a9c779fcfeda.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 19 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "468": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 20, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/2beb1ad1a52488cb90cbb277e60f4638021fd358f9f99ca5a7a9a9c779fcfeda.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 20 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "469": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/f68ac5127c2e5f488e054b6e5406fbd4412fe40038204608d22aadbaf91f8427.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 21, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 153, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/2beb1ad1a52488cb90cbb277e60f4638021fd358f9f99ca5a7a9a9c779fcfeda.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 128, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_public_key' in:" - ], - "start_col": 7, - "start_line": 21 - }, - "While handling calldata argument 'public_key'" - ], - "start_col": 33, - "start_line": 1 - } - }, - "470": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - } - }, - "472": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/constructor/2beb1ad1a52488cb90cbb277e60f4638021fd358f9f99ca5a7a9a9c779fcfeda.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/constructor/2beb1ad1a52488cb90cbb277e60f4638021fd358f9f99ca5a7a9a9c779fcfeda.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "474": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/2beb1ad1a52488cb90cbb277e60f4638021fd358f9f99ca5a7a9a9c779fcfeda.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "475": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/2beb1ad1a52488cb90cbb277e60f4638021fd358f9f99ca5a7a9a9c779fcfeda.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "476": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/2beb1ad1a52488cb90cbb277e60f4638021fd358f9f99ca5a7a9a9c779fcfeda.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "477": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/06e2dac6fec7b0245dd168190069dcb92ed8c79c7a1ccebce7b1343c3e526229.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "478": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/constructor/2beb1ad1a52488cb90cbb277e60f4638021fd358f9f99ca5a7a9a9c779fcfeda.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "480": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/constructor/2beb1ad1a52488cb90cbb277e60f4638021fd358f9f99ca5a7a9a9c779fcfeda.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "481": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 17, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 17 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "482": { - "accessible_scopes": ["__main__", "__main__", "__main__.get_public_key"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 32, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 82, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 36, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 17, - "start_line": 36 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 82 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 32 - } - }, - "483": { - "accessible_scopes": ["__main__", "__main__", "__main__.get_public_key"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 33, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 83, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 36, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 17, - "start_line": 36 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 83 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 33 - } - }, - "484": { - "accessible_scopes": ["__main__", "__main__", "__main__.get_public_key"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 34, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 84, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 36, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 17, - "start_line": 36 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 84 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 34 - } - }, - "485": { - "accessible_scopes": ["__main__", "__main__", "__main__.get_public_key"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 36, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 17, - "start_line": 36 - } - }, - "487": { - "accessible_scopes": ["__main__", "__main__", "__main__.get_public_key"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 37, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 5, - "start_line": 37 - } - }, - "488": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/get_public_key/6c88a431b3de1f686e46e7719bda3718e5ade4faed116bf334cf2c513d4a6834.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 17, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/get_public_key/6c88a431b3de1f686e46e7719bda3718e5ade4faed116bf334cf2c513d4a6834.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "490": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/a46542dc358872d57a2d9f424e61d9b07a0e4c72f24e3645022494cebfb47c83.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 35, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 13, - "start_line": 35 - }, - "While handling return value 'res'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "491": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/a46542dc358872d57a2d9f424e61d9b07a0e4c72f24e3645022494cebfb47c83.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 35, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/get_public_key/6c88a431b3de1f686e46e7719bda3718e5ade4faed116bf334cf2c513d4a6834.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 13, - "start_line": 35 - }, - "While handling return value 'res'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "493": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/get_public_key/6c88a431b3de1f686e46e7719bda3718e5ade4faed116bf334cf2c513d4a6834.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/get_public_key/6c88a431b3de1f686e46e7719bda3718e5ade4faed116bf334cf2c513d4a6834.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 31 - }, - "While handling return value of" - ], - "start_col": 61, - "start_line": 1 - } - }, - "494": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/get_public_key/6c88a431b3de1f686e46e7719bda3718e5ade4faed116bf334cf2c513d4a6834.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "495": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/get_public_key/6c88a431b3de1f686e46e7719bda3718e5ade4faed116bf334cf2c513d4a6834.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/get_public_key/6c88a431b3de1f686e46e7719bda3718e5ade4faed116bf334cf2c513d4a6834.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 31 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "496": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/get_public_key/6c88a431b3de1f686e46e7719bda3718e5ade4faed116bf334cf2c513d4a6834.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "497": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1b562308a65653425ce06491fa4b4539466f3251a07e73e099d0afe86a48900e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "498": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/c7060df96cb0acca1380ae43bf758cab727bfdf73cb5d34a93e24a9742817fda.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 32, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/35b83a34f1cf366b18f748c48a0832a5f033d593109cf21173864ca057c7654e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 32 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "499": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/424b26e79f70343cc02557f1fbd25745138efb26a3dc5c8b593ca765b73138b7.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 33, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/35b83a34f1cf366b18f748c48a0832a5f033d593109cf21173864ca057c7654e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 33 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "500": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 34, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/35b83a34f1cf366b18f748c48a0832a5f033d593109cf21173864ca057c7654e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 34 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "501": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - } - }, - "503": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/35b83a34f1cf366b18f748c48a0832a5f033d593109cf21173864ca057c7654e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 103, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/35b83a34f1cf366b18f748c48a0832a5f033d593109cf21173864ca057c7654e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 88, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "504": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 104, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/35b83a34f1cf366b18f748c48a0832a5f033d593109cf21173864ca057c7654e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "506": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/35b83a34f1cf366b18f748c48a0832a5f033d593109cf21173864ca057c7654e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "507": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/35b83a34f1cf366b18f748c48a0832a5f033d593109cf21173864ca057c7654e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "508": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/35b83a34f1cf366b18f748c48a0832a5f033d593109cf21173864ca057c7654e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "509": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/06e2dac6fec7b0245dd168190069dcb92ed8c79c7a1ccebce7b1343c3e526229.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "510": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/35b83a34f1cf366b18f748c48a0832a5f033d593109cf21173864ca057c7654e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "511": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/35b83a34f1cf366b18f748c48a0832a5f033d593109cf21173864ca057c7654e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "512": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 31 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "513": { - "accessible_scopes": ["__main__", "__main__", "__main__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 42, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 91, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 46, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 17, - "start_line": 46 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 91 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 42 - } - }, - "514": { - "accessible_scopes": ["__main__", "__main__", "__main__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 43, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 92, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 46, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 17, - "start_line": 46 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 92 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 43 - } - }, - "515": { - "accessible_scopes": ["__main__", "__main__", "__main__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 44, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 93, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 46, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 17, - "start_line": 46 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 93 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 44 - } - }, - "516": { - "accessible_scopes": ["__main__", "__main__", "__main__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 46, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 17, - "start_line": 46 - } - }, - "518": { - "accessible_scopes": ["__main__", "__main__", "__main__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 47, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 5, - "start_line": 47 - } - }, - "519": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_nonce_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/get_nonce/bf93b3f24f44c1d231ee962dcd66f445400200471f41f6b8182438865c6aa329.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 17, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/get_nonce/bf93b3f24f44c1d231ee962dcd66f445400200471f41f6b8182438865c6aa329.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "521": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_nonce_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/a46542dc358872d57a2d9f424e61d9b07a0e4c72f24e3645022494cebfb47c83.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 45, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 13, - "start_line": 45 - }, - "While handling return value 'res'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "522": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_nonce_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/a46542dc358872d57a2d9f424e61d9b07a0e4c72f24e3645022494cebfb47c83.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 45, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/get_nonce/bf93b3f24f44c1d231ee962dcd66f445400200471f41f6b8182438865c6aa329.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 13, - "start_line": 45 - }, - "While handling return value 'res'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "524": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_nonce_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/get_nonce/bf93b3f24f44c1d231ee962dcd66f445400200471f41f6b8182438865c6aa329.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/get_nonce/bf93b3f24f44c1d231ee962dcd66f445400200471f41f6b8182438865c6aa329.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While handling return value of" - ], - "start_col": 56, - "start_line": 1 - } - }, - "525": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_nonce_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/get_nonce/bf93b3f24f44c1d231ee962dcd66f445400200471f41f6b8182438865c6aa329.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "526": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_nonce_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/get_nonce/bf93b3f24f44c1d231ee962dcd66f445400200471f41f6b8182438865c6aa329.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/get_nonce/bf93b3f24f44c1d231ee962dcd66f445400200471f41f6b8182438865c6aa329.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "527": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_nonce_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/get_nonce/bf93b3f24f44c1d231ee962dcd66f445400200471f41f6b8182438865c6aa329.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "528": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1b562308a65653425ce06491fa4b4539466f3251a07e73e099d0afe86a48900e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "529": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/c7060df96cb0acca1380ae43bf758cab727bfdf73cb5d34a93e24a9742817fda.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 42, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/e66ea2d9a730c0c7d1a31a268304a4560d262e912e083a980ec218ee0d0494e3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 42 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "530": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/424b26e79f70343cc02557f1fbd25745138efb26a3dc5c8b593ca765b73138b7.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 43, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/e66ea2d9a730c0c7d1a31a268304a4560d262e912e083a980ec218ee0d0494e3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 43 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "531": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 44, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/e66ea2d9a730c0c7d1a31a268304a4560d262e912e083a980ec218ee0d0494e3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "532": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - } - }, - "534": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/e66ea2d9a730c0c7d1a31a268304a4560d262e912e083a980ec218ee0d0494e3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 98, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/e66ea2d9a730c0c7d1a31a268304a4560d262e912e083a980ec218ee0d0494e3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 83, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "535": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 99, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/e66ea2d9a730c0c7d1a31a268304a4560d262e912e083a980ec218ee0d0494e3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "537": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/e66ea2d9a730c0c7d1a31a268304a4560d262e912e083a980ec218ee0d0494e3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "538": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/e66ea2d9a730c0c7d1a31a268304a4560d262e912e083a980ec218ee0d0494e3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "539": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/e66ea2d9a730c0c7d1a31a268304a4560d262e912e083a980ec218ee0d0494e3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "540": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/06e2dac6fec7b0245dd168190069dcb92ed8c79c7a1ccebce7b1343c3e526229.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "541": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/e66ea2d9a730c0c7d1a31a268304a4560d262e912e083a980ec218ee0d0494e3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "542": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/e66ea2d9a730c0c7d1a31a268304a4560d262e912e083a980ec218ee0d0494e3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "543": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.get_nonce"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_nonce/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 41, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "544": { - "accessible_scopes": ["__main__", "__main__", "__main__.supportsInterface"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 52, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 18, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 56, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 21, - "start_line": 56 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 18 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 52 - } - }, - "545": { - "accessible_scopes": ["__main__", "__main__", "__main__.supportsInterface"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 53, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 19, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 56, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 21, - "start_line": 56 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 53 - } - }, - "546": { - "accessible_scopes": ["__main__", "__main__", "__main__.supportsInterface"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 54, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 20, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/introspection/ERC165.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 56, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 21, - "start_line": 56 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 20 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 54 - } - }, - "547": { - "accessible_scopes": ["__main__", "__main__", "__main__.supportsInterface"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 55, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 56, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 47, - "start_line": 56 - }, - "While expanding the reference 'interfaceId' in:" - ], - "start_col": 8, - "start_line": 55 - } - }, - "548": { - "accessible_scopes": ["__main__", "__main__", "__main__.supportsInterface"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 56, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 21, - "start_line": 56 - } - }, - "550": { - "accessible_scopes": ["__main__", "__main__", "__main__.supportsInterface"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 57, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 5, - "start_line": 57 - } - }, - "551": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/0ccaafa110e9120e2b106f5b966106f81f3b3154d7181efd59d6d22304c05b8f.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 17, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/0ccaafa110e9120e2b106f5b966106f81f3b3154d7181efd59d6d22304c05b8f.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "553": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/164ac49a4ba7621bb283de066400b7a3a6c3fcb5a82417a78c81b6ddd4e1925e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 55, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 31, - "start_line": 55 - }, - "While handling return value 'success'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "554": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/164ac49a4ba7621bb283de066400b7a3a6c3fcb5a82417a78c81b6ddd4e1925e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 55, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/0ccaafa110e9120e2b106f5b966106f81f3b3154d7181efd59d6d22304c05b8f.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 31, - "start_line": 55 - }, - "While handling return value 'success'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "556": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/0ccaafa110e9120e2b106f5b966106f81f3b3154d7181efd59d6d22304c05b8f.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/0ccaafa110e9120e2b106f5b966106f81f3b3154d7181efd59d6d22304c05b8f.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While handling return value of" - ], - "start_col": 68, - "start_line": 1 - } - }, - "557": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/0ccaafa110e9120e2b106f5b966106f81f3b3154d7181efd59d6d22304c05b8f.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "558": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/0ccaafa110e9120e2b106f5b966106f81f3b3154d7181efd59d6d22304c05b8f.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/0ccaafa110e9120e2b106f5b966106f81f3b3154d7181efd59d6d22304c05b8f.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "559": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/0ccaafa110e9120e2b106f5b966106f81f3b3154d7181efd59d6d22304c05b8f.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "560": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/5d2294ce8e305b1bd560f56804793340439bb863103e1ba5c235e3d08cf6d272.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 55, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/5e1cc73f0b484f90bb02da164d88332b40c6f698801aa4d3c603dab22157e902.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1b562308a65653425ce06491fa4b4539466f3251a07e73e099d0afe86a48900e.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 8, - "start_line": 55 - }, - "While handling calldata argument 'interfaceId'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "562": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1b562308a65653425ce06491fa4b4539466f3251a07e73e099d0afe86a48900e.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "563": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/c7060df96cb0acca1380ae43bf758cab727bfdf73cb5d34a93e24a9742817fda.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 52, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/f42d4bdb706c65af40f5362367216470e8af3c2495211c590a9f91908a664080.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 52 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "564": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/424b26e79f70343cc02557f1fbd25745138efb26a3dc5c8b593ca765b73138b7.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 53, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/f42d4bdb706c65af40f5362367216470e8af3c2495211c590a9f91908a664080.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 53 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "565": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 54, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/f42d4bdb706c65af40f5362367216470e8af3c2495211c590a9f91908a664080.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 54 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "566": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/5d2294ce8e305b1bd560f56804793340439bb863103e1ba5c235e3d08cf6d272.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 55, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 155, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/f42d4bdb706c65af40f5362367216470e8af3c2495211c590a9f91908a664080.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 129, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_interfaceId' in:" - ], - "start_col": 8, - "start_line": 55 - }, - "While handling calldata argument 'interfaceId'" - ], - "start_col": 34, - "start_line": 1 - } - }, - "567": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - } - }, - "569": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/f42d4bdb706c65af40f5362367216470e8af3c2495211c590a9f91908a664080.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 106, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/f42d4bdb706c65af40f5362367216470e8af3c2495211c590a9f91908a664080.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 91, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "570": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 107, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/f42d4bdb706c65af40f5362367216470e8af3c2495211c590a9f91908a664080.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "572": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/f42d4bdb706c65af40f5362367216470e8af3c2495211c590a9f91908a664080.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "573": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/f42d4bdb706c65af40f5362367216470e8af3c2495211c590a9f91908a664080.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "574": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/f42d4bdb706c65af40f5362367216470e8af3c2495211c590a9f91908a664080.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "575": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/06e2dac6fec7b0245dd168190069dcb92ed8c79c7a1ccebce7b1343c3e526229.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "576": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/f42d4bdb706c65af40f5362367216470e8af3c2495211c590a9f91908a664080.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "577": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/f42d4bdb706c65af40f5362367216470e8af3c2495211c590a9f91908a664080.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "578": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "579": { - "accessible_scopes": ["__main__", "__main__", "__main__.set_public_key"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 66, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 104, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 70, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 5, - "start_line": 70 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 104 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 66 - } - }, - "580": { - "accessible_scopes": ["__main__", "__main__", "__main__.set_public_key"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 67, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 105, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 70, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 5, - "start_line": 70 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 105 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 67 - } - }, - "581": { - "accessible_scopes": ["__main__", "__main__", "__main__.set_public_key"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 68, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 106, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 70, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 5, - "start_line": 70 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 106 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 68 - } - }, - "582": { - "accessible_scopes": ["__main__", "__main__", "__main__.set_public_key"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 69, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 70, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 28, - "start_line": 70 - }, - "While expanding the reference 'new_public_key' in:" - ], - "start_col": 7, - "start_line": 69 - } - }, - "583": { - "accessible_scopes": ["__main__", "__main__", "__main__.set_public_key"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 70, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 5, - "start_line": 70 - } - }, - "585": { - "accessible_scopes": ["__main__", "__main__", "__main__.set_public_key"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 71, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 5, - "start_line": 71 - } - }, - "586": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/960ed0835c5fa83e7fde73a3a03f5fd9272c9b63199927c6476a8754ae40c556.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 69, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/5e1cc73f0b484f90bb02da164d88332b40c6f698801aa4d3c603dab22157e902.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1b562308a65653425ce06491fa4b4539466f3251a07e73e099d0afe86a48900e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 65 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 7, - "start_line": 69 - }, - "While handling calldata argument 'new_public_key'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "588": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1b562308a65653425ce06491fa4b4539466f3251a07e73e099d0afe86a48900e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "589": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/c7060df96cb0acca1380ae43bf758cab727bfdf73cb5d34a93e24a9742817fda.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 66, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/e204e5e6fd17023eb90ecd048f661ddb42e9bc72687cebc566b9a5843ced08fb.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 66 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "590": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/424b26e79f70343cc02557f1fbd25745138efb26a3dc5c8b593ca765b73138b7.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 67, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/e204e5e6fd17023eb90ecd048f661ddb42e9bc72687cebc566b9a5843ced08fb.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "591": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 68, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/e204e5e6fd17023eb90ecd048f661ddb42e9bc72687cebc566b9a5843ced08fb.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 68 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "592": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/960ed0835c5fa83e7fde73a3a03f5fd9272c9b63199927c6476a8754ae40c556.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 69, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 161, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/e204e5e6fd17023eb90ecd048f661ddb42e9bc72687cebc566b9a5843ced08fb.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 132, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_new_public_key' in:" - ], - "start_col": 7, - "start_line": 69 - }, - "While handling calldata argument 'new_public_key'" - ], - "start_col": 37, - "start_line": 1 - } - }, - "593": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - } - }, - "595": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/e204e5e6fd17023eb90ecd048f661ddb42e9bc72687cebc566b9a5843ced08fb.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/e204e5e6fd17023eb90ecd048f661ddb42e9bc72687cebc566b9a5843ced08fb.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "597": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/e204e5e6fd17023eb90ecd048f661ddb42e9bc72687cebc566b9a5843ced08fb.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "598": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/e204e5e6fd17023eb90ecd048f661ddb42e9bc72687cebc566b9a5843ced08fb.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "599": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/e204e5e6fd17023eb90ecd048f661ddb42e9bc72687cebc566b9a5843ced08fb.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "600": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/06e2dac6fec7b0245dd168190069dcb92ed8c79c7a1ccebce7b1343c3e526229.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "601": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/e204e5e6fd17023eb90ecd048f661ddb42e9bc72687cebc566b9a5843ced08fb.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "603": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/e204e5e6fd17023eb90ecd048f661ddb42e9bc72687cebc566b9a5843ced08fb.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "604": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/set_public_key/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 65, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 65 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "605": { - "accessible_scopes": ["__main__", "__main__", "__main__.is_valid_signature"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 80, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 118, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 89, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 22, - "start_line": 89 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 118 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 80 - } - }, - "606": { - "accessible_scopes": ["__main__", "__main__", "__main__.is_valid_signature"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 81, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 119, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 89, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 22, - "start_line": 89 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 119 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 81 - } - }, - "607": { - "accessible_scopes": ["__main__", "__main__", "__main__.is_valid_signature"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 82, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 120, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 89, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 22, - "start_line": 89 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 120 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 82 - } - }, - "608": { - "accessible_scopes": ["__main__", "__main__", "__main__.is_valid_signature"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 83, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 121, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 89, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 22, - "start_line": 89 - }, - "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" - ], - "start_col": 13, - "start_line": 121 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 9, - "start_line": 83 - } - }, - "609": { - "accessible_scopes": ["__main__", "__main__", "__main__.is_valid_signature"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 85, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 89, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 49, - "start_line": 89 - }, - "While expanding the reference 'hash' in:" - ], - "start_col": 9, - "start_line": 85 - } - }, - "610": { - "accessible_scopes": ["__main__", "__main__", "__main__.is_valid_signature"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 86, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 89, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 55, - "start_line": 89 - }, - "While expanding the reference 'signature_len' in:" - ], - "start_col": 9, - "start_line": 86 - } - }, - "611": { - "accessible_scopes": ["__main__", "__main__", "__main__.is_valid_signature"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 87, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 89, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 70, - "start_line": 89 - }, - "While expanding the reference 'signature' in:" - ], - "start_col": 9, - "start_line": 87 - } - }, - "612": { - "accessible_scopes": ["__main__", "__main__", "__main__.is_valid_signature"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 89, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 22, - "start_line": 89 - } - }, - "614": { - "accessible_scopes": ["__main__", "__main__", "__main__.is_valid_signature"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 90, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 5, - "start_line": 90 - } - }, - "615": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/is_valid_signature/2fd1680b9b1da76b330dfd982566c62909fb67849afa1f48d22436e00093ed60.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 17, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/is_valid_signature/2fd1680b9b1da76b330dfd982566c62909fb67849afa1f48d22436e00093ed60.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "617": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/82845ad084ad423c1c2d7fd0102ea33cf14d8eea0f8091dcd0bac7c89e6ec075.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 88, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 11, - "start_line": 88 - }, - "While handling return value 'is_valid'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "618": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/82845ad084ad423c1c2d7fd0102ea33cf14d8eea0f8091dcd0bac7c89e6ec075.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 88, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/is_valid_signature/2fd1680b9b1da76b330dfd982566c62909fb67849afa1f48d22436e00093ed60.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 11, - "start_line": 88 - }, - "While handling return value 'is_valid'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "620": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/is_valid_signature/2fd1680b9b1da76b330dfd982566c62909fb67849afa1f48d22436e00093ed60.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/is_valid_signature/2fd1680b9b1da76b330dfd982566c62909fb67849afa1f48d22436e00093ed60.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 79 - }, - "While handling return value of" - ], - "start_col": 70, - "start_line": 1 - } - }, - "621": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/is_valid_signature/2fd1680b9b1da76b330dfd982566c62909fb67849afa1f48d22436e00093ed60.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "622": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/is_valid_signature/2fd1680b9b1da76b330dfd982566c62909fb67849afa1f48d22436e00093ed60.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/is_valid_signature/2fd1680b9b1da76b330dfd982566c62909fb67849afa1f48d22436e00093ed60.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 79 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "623": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/is_valid_signature/2fd1680b9b1da76b330dfd982566c62909fb67849afa1f48d22436e00093ed60.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "624": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 82, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/af0e0ad1dbc5708a90b4c31e69f13c85f8b13b0ea898d09f3ae14676037400be.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 87, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 87 - }, - "While handling calldata argument 'signature'" - ], - "start_col": 9, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "625": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e1b7bcaf2f97aa307c8deca2578c63f05cf45d09bb1ecaaf9be0bb828fc5cb40.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 86, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/af0e0ad1dbc5708a90b4c31e69f13c85f8b13b0ea898d09f3ae14676037400be.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 87, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 87 - }, - "While handling calldata argument 'signature'" - ], - "start_col": 28, - "start_line": 2 - }, - "While expanding the reference '__calldata_arg_signature_len' in:" - ], - "start_col": 9, - "start_line": 86 - }, - "While handling calldata argument 'signature_len'" - ], - "start_col": 36, - "start_line": 1 - } - }, - "626": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/af0e0ad1dbc5708a90b4c31e69f13c85f8b13b0ea898d09f3ae14676037400be.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 87, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 87 - }, - "While handling calldata argument 'signature'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "627": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/e1b7bcaf2f97aa307c8deca2578c63f05cf45d09bb1ecaaf9be0bb828fc5cb40.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 86, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/af0e0ad1dbc5708a90b4c31e69f13c85f8b13b0ea898d09f3ae14676037400be.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 87, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 87 - }, - "While handling calldata argument 'signature'" - ], - "start_col": 26, - "start_line": 8 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 9, - "start_line": 86 - }, - "While handling calldata argument 'signature_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "629": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e1b7bcaf2f97aa307c8deca2578c63f05cf45d09bb1ecaaf9be0bb828fc5cb40.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 86, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/af0e0ad1dbc5708a90b4c31e69f13c85f8b13b0ea898d09f3ae14676037400be.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 87, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 87 - }, - "While handling calldata argument 'signature'" - ], - "start_col": 43, - "start_line": 8 - }, - "While expanding the reference '__calldata_arg_signature_len' in:" - ], - "start_col": 9, - "start_line": 86 - }, - "While handling calldata argument 'signature_len'" - ], - "start_col": 36, - "start_line": 1 - } - }, - "630": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/af0e0ad1dbc5708a90b4c31e69f13c85f8b13b0ea898d09f3ae14676037400be.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 87, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 87 - }, - "While handling calldata argument 'signature'" - ], - "start_col": 26, - "start_line": 8 - } - }, - "631": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1b562308a65653425ce06491fa4b4539466f3251a07e73e099d0afe86a48900e.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "632": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 82, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/af0e0ad1dbc5708a90b4c31e69f13c85f8b13b0ea898d09f3ae14676037400be.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 87, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 87 - }, - "While handling calldata argument 'signature'" - ], - "start_col": 23, - "start_line": 3 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "633": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/c7060df96cb0acca1380ae43bf758cab727bfdf73cb5d34a93e24a9742817fda.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 80, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 80 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "634": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/424b26e79f70343cc02557f1fbd25745138efb26a3dc5c8b593ca765b73138b7.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 81, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 81 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "635": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/af0e0ad1dbc5708a90b4c31e69f13c85f8b13b0ea898d09f3ae14676037400be.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 87, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 87 - }, - "While handling calldata argument 'signature'" - ], - "start_col": 23, - "start_line": 3 - } - }, - "637": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 112, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/9aa866da402dc1b34ae86751a3cabb224b0d9ac08fe13c58bb079af4cd281bec.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 83, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 136, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 127, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 9, - "start_line": 83 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "638": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/f3c2d3942f0f75ba7fab7e0c13e6cee1d1be8a6d9e771412e1ff56c7484dd3f4.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 85, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 162, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 143, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_hash' in:" - ], - "start_col": 9, - "start_line": 85 - }, - "While handling calldata argument 'hash'" - ], - "start_col": 27, - "start_line": 1 - } - }, - "639": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e1b7bcaf2f97aa307c8deca2578c63f05cf45d09bb1ecaaf9be0bb828fc5cb40.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 86, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 206, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 178, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_signature_len' in:" - ], - "start_col": 9, - "start_line": 86 - }, - "While handling calldata argument 'signature_len'" - ], - "start_col": 36, - "start_line": 1 - } - }, - "640": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/af0e0ad1dbc5708a90b4c31e69f13c85f8b13b0ea898d09f3ae14676037400be.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 87, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 242, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 218, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_signature' in:" - ], - "start_col": 9, - "start_line": 87 - }, - "While handling calldata argument 'signature'" - ], - "start_col": 32, - "start_line": 5 - } - }, - "642": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - } - }, - "644": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 107, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 92, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "645": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 108, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "647": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "648": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "649": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "650": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 136, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 127, - "start_line": 1 - } - }, - "651": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "652": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/97096367aa11c68c9912acfe3d8ee0cc41f71c6e9bbb24b1d835849bc0f742ba.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "653": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_valid_signature/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 79 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "654": { - "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 95, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 146, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 112, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 36, - "start_line": 106 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 146 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 95 - } - }, - "655": { - "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 96, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 147, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 112, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 36, - "start_line": 106 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 147 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 96 - } - }, - "656": { - "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 97, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 148, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 112, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 36, - "start_line": 106 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 148 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 97 - } - }, - "657": { - "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 98, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 149, - "input_file": { - "filename": "/Users/janek/Projects/cairo-contracts/src/openzeppelin/account/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 112, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 36, - "start_line": 106 - }, - "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" - ], - "start_col": 13, - "start_line": 149 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 9, - "start_line": 98 - } - }, - "658": { - "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 100, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 107, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 107 - }, - "While expanding the reference 'call_array_len' in:" - ], - "start_col": 9, - "start_line": 100 - } - }, - "659": { - "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 101, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 108, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 108 - }, - "While expanding the reference 'call_array' in:" - ], - "start_col": 9, - "start_line": 101 - } - }, - "660": { - "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 102, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 109, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 109 - }, - "While expanding the reference 'calldata_len' in:" - ], - "start_col": 9, - "start_line": 102 - } - }, - "661": { - "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 103, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 110, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 110 - }, - "While expanding the reference 'calldata' in:" - ], - "start_col": 9, - "start_line": 103 - } - }, - "662": { - "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 104, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 111, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 111 - }, - "While expanding the reference 'nonce' in:" - ], - "start_col": 9, - "start_line": 104 - } - }, - "663": { - "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 112, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 36, - "start_line": 106 - } - }, - "665": { - "accessible_scopes": ["__main__", "__main__", "__main__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 113, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 5, - "start_line": 113 - } - }, - "666": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__execute___encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/__execute__/0c74566530ff2aa54d0b76c774b9910d9b6556a601d082a161fd500a11d65a11.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 17, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/__execute__/0c74566530ff2aa54d0b76c774b9910d9b6556a601d082a161fd500a11d65a11.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "668": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__execute___encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/dddef5deb48d77c2b777f7818c119d55373dc859a9d96120cc0b9b9d770eaaa8.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 105, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 11, - "start_line": 105 - }, - "While handling return value 'response_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "669": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__execute___encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/9a33b36f0b370727591cd73951c78dd45b374422bf83948718aa6f02ba9d5a5a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 105, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 31, - "start_line": 105 - }, - "While handling return value 'response'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "670": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__execute___encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/9a33b36f0b370727591cd73951c78dd45b374422bf83948718aa6f02ba9d5a5a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 105, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 31, - "start_line": 105 - }, - "While handling return value 'response'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "672": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__execute___encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/dddef5deb48d77c2b777f7818c119d55373dc859a9d96120cc0b9b9d770eaaa8.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 105, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/9a33b36f0b370727591cd73951c78dd45b374422bf83948718aa6f02ba9d5a5a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 105, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 31, - "start_line": 105 - }, - "While handling return value 'response'" - ], - "start_col": 36, - "start_line": 10 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 11, - "start_line": 105 - }, - "While handling return value 'response_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "674": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__execute___encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/9a33b36f0b370727591cd73951c78dd45b374422bf83948718aa6f02ba9d5a5a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 105, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 31, - "start_line": 105 - }, - "While handling return value 'response'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "675": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__execute___encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/dddef5deb48d77c2b777f7818c119d55373dc859a9d96120cc0b9b9d770eaaa8.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 105, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/9a33b36f0b370727591cd73951c78dd45b374422bf83948718aa6f02ba9d5a5a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 105, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/9a33b36f0b370727591cd73951c78dd45b374422bf83948718aa6f02ba9d5a5a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 105, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 31, - "start_line": 105 - }, - "While handling return value 'response'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_copy' in:" - ], - "start_col": 31, - "start_line": 105 - }, - "While handling return value 'response'" - ], - "start_col": 31, - "start_line": 7 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 11, - "start_line": 105 - }, - "While handling return value 'response_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "677": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__execute___encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/9a33b36f0b370727591cd73951c78dd45b374422bf83948718aa6f02ba9d5a5a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 105, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 31, - "start_line": 105 - }, - "While handling return value 'response'" - ], - "start_col": 9, - "start_line": 13 - } - }, - "678": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__execute___encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/9a33b36f0b370727591cd73951c78dd45b374422bf83948718aa6f02ba9d5a5a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 105, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 31, - "start_line": 105 - }, - "While handling return value 'response'" - ], - "start_col": 9, - "start_line": 14 - } - }, - "679": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__execute___encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/9a33b36f0b370727591cd73951c78dd45b374422bf83948718aa6f02ba9d5a5a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 105, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 31, - "start_line": 105 - }, - "While handling return value 'response'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "681": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__execute___encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/9a33b36f0b370727591cd73951c78dd45b374422bf83948718aa6f02ba9d5a5a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 105, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/__execute__/0c74566530ff2aa54d0b76c774b9910d9b6556a601d082a161fd500a11d65a11.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 31, - "start_line": 105 - }, - "While handling return value 'response'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "682": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__execute___encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/__execute__/0c74566530ff2aa54d0b76c774b9910d9b6556a601d082a161fd500a11d65a11.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "683": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__execute___encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/__execute__/0c74566530ff2aa54d0b76c774b9910d9b6556a601d082a161fd500a11d65a11.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/__execute__/0c74566530ff2aa54d0b76c774b9910d9b6556a601d082a161fd500a11d65a11.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 94 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "684": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__execute___encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/__execute__/0c74566530ff2aa54d0b76c774b9910d9b6556a601d082a161fd500a11d65a11.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "685": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e2645b5103a9d5af449b8fe7ba025f8f981a7d85f0d6bd668f32b9064d8689dd.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "687": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 97, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/7bb8ebaf1adbcc95ba53cf61877f9b0182ef69b7220a3f0b03c5d57c3b051667.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 101, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 101 - }, - "While handling calldata argument 'call_array'" - ], - "start_col": 9, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 97 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "688": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/2311e7438f422acd27be84fafe870b01e285827c63200dabae3efa5289008fee.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 100, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/7bb8ebaf1adbcc95ba53cf61877f9b0182ef69b7220a3f0b03c5d57c3b051667.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 101, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 101 - }, - "While handling calldata argument 'call_array'" - ], - "start_col": 28, - "start_line": 2 - }, - "While expanding the reference '__calldata_arg_call_array_len' in:" - ], - "start_col": 9, - "start_line": 100 - }, - "While handling calldata argument 'call_array_len'" - ], - "start_col": 37, - "start_line": 1 - } - }, - "689": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/7bb8ebaf1adbcc95ba53cf61877f9b0182ef69b7220a3f0b03c5d57c3b051667.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 101, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 101 - }, - "While handling calldata argument 'call_array'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "690": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/2311e7438f422acd27be84fafe870b01e285827c63200dabae3efa5289008fee.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 100, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/7bb8ebaf1adbcc95ba53cf61877f9b0182ef69b7220a3f0b03c5d57c3b051667.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 101, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 101 - }, - "While handling calldata argument 'call_array'" - ], - "start_col": 26, - "start_line": 8 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 9, - "start_line": 100 - }, - "While handling calldata argument 'call_array_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "692": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/2311e7438f422acd27be84fafe870b01e285827c63200dabae3efa5289008fee.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 100, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/7bb8ebaf1adbcc95ba53cf61877f9b0182ef69b7220a3f0b03c5d57c3b051667.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 101, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 101 - }, - "While handling calldata argument 'call_array'" - ], - "start_col": 43, - "start_line": 8 - }, - "While expanding the reference '__calldata_arg_call_array_len' in:" - ], - "start_col": 9, - "start_line": 100 - }, - "While handling calldata argument 'call_array_len'" - ], - "start_col": 37, - "start_line": 1 - } - }, - "693": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/7bb8ebaf1adbcc95ba53cf61877f9b0182ef69b7220a3f0b03c5d57c3b051667.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 101, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 101 - }, - "While handling calldata argument 'call_array'" - ], - "start_col": 43, - "start_line": 8 - } - }, - "695": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/7bb8ebaf1adbcc95ba53cf61877f9b0182ef69b7220a3f0b03c5d57c3b051667.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 101, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 101 - }, - "While handling calldata argument 'call_array'" - ], - "start_col": 26, - "start_line": 8 - } - }, - "696": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 97, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/7bb8ebaf1adbcc95ba53cf61877f9b0182ef69b7220a3f0b03c5d57c3b051667.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 101, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/4f07c4ae795d22b6bc4426e596637ee88f870711dc3768dd8178092f4b2c0b65.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 103, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 103 - }, - "While handling calldata argument 'calldata'" - ], - "start_col": 9, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 101 - }, - "While handling calldata argument 'call_array'" - ], - "start_col": 23, - "start_line": 3 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 97 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "697": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/8799496fe2567340f6719cfd30d7db5f6b8e7aa420ca97e3a3c3ccbdfbb2e674.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 102, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/4f07c4ae795d22b6bc4426e596637ee88f870711dc3768dd8178092f4b2c0b65.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 103, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 103 - }, - "While handling calldata argument 'calldata'" - ], - "start_col": 28, - "start_line": 2 - }, - "While expanding the reference '__calldata_arg_calldata_len' in:" - ], - "start_col": 9, - "start_line": 102 - }, - "While handling calldata argument 'calldata_len'" - ], - "start_col": 35, - "start_line": 1 - } - }, - "698": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/4f07c4ae795d22b6bc4426e596637ee88f870711dc3768dd8178092f4b2c0b65.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 103, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 103 - }, - "While handling calldata argument 'calldata'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "699": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/8799496fe2567340f6719cfd30d7db5f6b8e7aa420ca97e3a3c3ccbdfbb2e674.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 102, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/4f07c4ae795d22b6bc4426e596637ee88f870711dc3768dd8178092f4b2c0b65.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 103, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 103 - }, - "While handling calldata argument 'calldata'" - ], - "start_col": 26, - "start_line": 8 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 9, - "start_line": 102 - }, - "While handling calldata argument 'calldata_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "701": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/8799496fe2567340f6719cfd30d7db5f6b8e7aa420ca97e3a3c3ccbdfbb2e674.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 102, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/4f07c4ae795d22b6bc4426e596637ee88f870711dc3768dd8178092f4b2c0b65.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 103, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 103 - }, - "While handling calldata argument 'calldata'" - ], - "start_col": 43, - "start_line": 8 - }, - "While expanding the reference '__calldata_arg_calldata_len' in:" - ], - "start_col": 9, - "start_line": 102 - }, - "While handling calldata argument 'calldata_len'" - ], - "start_col": 35, - "start_line": 1 - } - }, - "702": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/4f07c4ae795d22b6bc4426e596637ee88f870711dc3768dd8178092f4b2c0b65.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 103, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 9, - "start_line": 103 - }, - "While handling calldata argument 'calldata'" - ], - "start_col": 26, - "start_line": 8 - } - }, - "703": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/2af83e2ace09380d3be2e1d366c8649a74753b790c9d2b5e425bfdf350d70145.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 104, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/5e1cc73f0b484f90bb02da164d88332b40c6f698801aa4d3c603dab22157e902.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1b562308a65653425ce06491fa4b4539466f3251a07e73e099d0afe86a48900e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 94 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 9, - "start_line": 104 - }, - "While handling calldata argument 'nonce'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "705": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1b562308a65653425ce06491fa4b4539466f3251a07e73e099d0afe86a48900e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "706": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e651458745e7cd218121c342e0915890767e2f59ddc2e315b8844ad0f47d582e.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 97, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/7bb8ebaf1adbcc95ba53cf61877f9b0182ef69b7220a3f0b03c5d57c3b051667.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 101, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/4f07c4ae795d22b6bc4426e596637ee88f870711dc3768dd8178092f4b2c0b65.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 103, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 103 - }, - "While handling calldata argument 'calldata'" - ], - "start_col": 23, - "start_line": 3 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 101 - }, - "While handling calldata argument 'call_array'" - ], - "start_col": 23, - "start_line": 3 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 97 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "707": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/c7060df96cb0acca1380ae43bf758cab727bfdf73cb5d34a93e24a9742817fda.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 95, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 95 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "708": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/424b26e79f70343cc02557f1fbd25745138efb26a3dc5c8b593ca765b73138b7.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 96, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 96 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "709": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/4f07c4ae795d22b6bc4426e596637ee88f870711dc3768dd8178092f4b2c0b65.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 103, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 103 - }, - "While handling calldata argument 'calldata'" - ], - "start_col": 23, - "start_line": 3 - } - }, - "711": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 112, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/9aa866da402dc1b34ae86751a3cabb224b0d9ac08fe13c58bb079af4cd281bec.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 98, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 136, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 127, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 9, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "712": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/2311e7438f422acd27be84fafe870b01e285827c63200dabae3efa5289008fee.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 100, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 182, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 153, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_call_array_len' in:" - ], - "start_col": 9, - "start_line": 100 - }, - "While handling calldata argument 'call_array_len'" - ], - "start_col": 37, - "start_line": 1 - } - }, - "713": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 101, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/7bb8ebaf1adbcc95ba53cf61877f9b0182ef69b7220a3f0b03c5d57c3b051667.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 101, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 220, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 195, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_call_array' in:" - ], - "start_col": 9, - "start_line": 101 - }, - "While handling calldata argument 'call_array'" - ], - "start_col": 33, - "start_line": 5 - } - }, - "715": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/8799496fe2567340f6719cfd30d7db5f6b8e7aa420ca97e3a3c3ccbdfbb2e674.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 102, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 262, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 235, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_calldata_len' in:" - ], - "start_col": 9, - "start_line": 102 - }, - "While handling calldata argument 'calldata_len'" - ], - "start_col": 35, - "start_line": 1 - } - }, - "716": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/4f07c4ae795d22b6bc4426e596637ee88f870711dc3768dd8178092f4b2c0b65.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 103, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 296, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 273, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_calldata' in:" - ], - "start_col": 9, - "start_line": 103 - }, - "While handling calldata argument 'calldata'" - ], - "start_col": 31, - "start_line": 5 - } - }, - "718": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/2af83e2ace09380d3be2e1d366c8649a74753b790c9d2b5e425bfdf350d70145.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 104, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 324, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 304, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_nonce' in:" - ], - "start_col": 9, - "start_line": 104 - }, - "While handling calldata argument 'nonce'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "719": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - } - }, - "721": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "722": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "723": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 136, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 136, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 127, - "start_line": 1 - }, - "While auto generating local variable for 'ecdsa_ptr'." - ], - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 127, - "start_line": 1 - } - }, - "724": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 100, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 85, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "725": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 101, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "727": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "728": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "729": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "730": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 136, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 136, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 127, - "start_line": 1 - }, - "While auto generating local variable for 'ecdsa_ptr'." - ], - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 127, - "start_line": 1 - } - }, - "731": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "732": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/__execute__/e00a64e3749f85fb2392638ff06fa2928ca3ddb4ecbd4918465b447ba876482e.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "733": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.__execute__"], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/__execute__/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 94, - "input_file": { - "filename": "src/openzeppelin/account/Account.cairo" - }, - "start_col": 6, - "start_line": 94 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - } - } - }, - "hints": { - "0": [ - { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 0, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "12": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "vm_enter_scope({'n': ids.len})", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.memcpy.memcpy.len": 0 - } - } - } - ], - "20": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "n -= 1\nids.continue_copying = 1 if n > 0 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 5 - }, - "reference_ids": { - "starkware.cairo.common.memcpy.memcpy.continue_copying": 1 - } - } - } - ], - "23": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "vm_exit_scope()", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 6 - }, - "reference_ids": {} - } - } - ], - "25": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_equal" - ], - "code": "from starkware.cairo.lang.vm.relocatable import RelocatableValue\nboth_ints = isinstance(ids.a, int) and isinstance(ids.b, int)\nboth_relocatable = (\n isinstance(ids.a, RelocatableValue) and isinstance(ids.b, RelocatableValue) and\n ids.a.segment_index == ids.b.segment_index)\nassert both_ints or both_relocatable, \\\n f'assert_not_equal failed: non-comparable values: {ids.a}, {ids.b}.'\nassert (ids.a - ids.b) % PRIME != 0, f'assert_not_equal failed: {ids.a} = {ids.b}.'", - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_not_equal.a": 2, - "starkware.cairo.common.math.assert_not_equal.b": 3 - } - } - } - ], - "31": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "code": "from starkware.cairo.common.math_utils import as_int\n\n# Correctness check.\nvalue = as_int(ids.value, PRIME) % PRIME\nassert value < ids.UPPER_BOUND, f'{value} is outside of the range [0, 2**250).'\n\n# Calculation for the assertion.\nids.high, ids.low = divmod(ids.value, ids.SHIFT)", - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_250_bit.high": 6, - "starkware.cairo.common.math.assert_250_bit.low": 5, - "starkware.cairo.common.math.assert_250_bit.value": 4 - } - } - } - ], - "46": [ - { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "code": "# Verify the assumptions on the relationship between 2**250, ADDR_BOUND and PRIME.\nADDR_BOUND = ids.ADDR_BOUND % PRIME\nassert (2**250 < ADDR_BOUND <= 2**251) and (2 * 2**250 < PRIME) and (\n ADDR_BOUND * 2 > PRIME), \\\n 'normalize_address() cannot be used with the current constants.'\nids.is_small = 1 if ids.addr < ADDR_BOUND else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 6, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 7, - "starkware.starknet.common.storage.normalize_address.is_small": 8 - } - } - } - ], - "64": [ - { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "code": "ids.is_250 = 1 if ids.addr < 2**250 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 6, - "offset": 2 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 7, - "starkware.starknet.common.storage.normalize_address.is_250": 9 - } - } - } - ], - "91": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "code": "syscall_handler.call_contract(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 7, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.call_contract.syscall_ptr": 10 - } - } - } - ], - "99": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "code": "syscall_handler.get_caller_address(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 8, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": 11 - } - } - } - ], - "106": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_contract_address" - ], - "code": "syscall_handler.get_contract_address(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_contract_address.syscall_ptr": 12 - } - } - } - ], - "114": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "code": "syscall_handler.storage_read(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 10, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 13 - } - } - } - ], - "123": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "code": "syscall_handler.storage_write(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 14 - } - } - } - ], - "129": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_tx_info" - ], - "code": "syscall_handler.get_tx_info(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_tx_info.syscall_ptr": 15 - } - } - } - ], - "133": [ - { - "accessible_scopes": [ - "starkware.cairo.common.signature", - "starkware.cairo.common.signature.verify_ecdsa_signature" - ], - "code": "ecdsa_builtin.add_signature(ids.ecdsa_ptr.address_, (ids.signature_r, ids.signature_s))", - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.signature.verify_ecdsa_signature.ecdsa_ptr": 18, - "starkware.cairo.common.signature.verify_ecdsa_signature.signature_r": 16, - "starkware.cairo.common.signature.verify_ecdsa_signature.signature_s": 17 - } - } - } - ], - "472": [ - { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.constructor"], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 103 - }, - "reference_ids": {} - } - } - ], - "488": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_public_key_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "519": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_nonce_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 45, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "551": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 49, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "595": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.set_public_key" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 53, - "offset": 50 - }, - "reference_ids": {} - } - } - ], - "615": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_valid_signature_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 55, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "666": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__execute___encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 59, - "offset": 0 - }, - "reference_ids": {} - } - } - ] - }, - "identifiers": { - "__main__.Account": { - "destination": "openzeppelin.account.library.Account", - "type": "alias" - }, - "__main__.AccountCallArray": { - "destination": "openzeppelin.account.library.AccountCallArray", - "type": "alias" - }, - "__main__.ERC165": { - "destination": "openzeppelin.introspection.ERC165.ERC165", - "type": "alias" - }, - "__main__.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.SignatureBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "type": "alias" - }, - "__main__.__execute__": { - "decorators": ["external"], - "pc": 654, - "type": "function" - }, - "__main__.__execute__.Args": { - "full_name": "__main__.__execute__.Args", - "members": { - "call_array": { - "cairo_type": "openzeppelin.account.library.AccountCallArray*", - "offset": 1 - }, - "call_array_len": { - "cairo_type": "felt", - "offset": 0 - }, - "calldata": { - "cairo_type": "felt*", - "offset": 3 - }, - "calldata_len": { - "cairo_type": "felt", - "offset": 2 - }, - "nonce": { - "cairo_type": "felt", - "offset": 4 - } - }, - "size": 5, - "type": "struct" - }, - "__main__.__execute__.ImplicitArgs": { - "full_name": "__main__.__execute__.ImplicitArgs", - "members": { - "ecdsa_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.SignatureBuiltin*", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "__main__.__execute__.Return": { - "cairo_type": "(response_len : felt, response : felt*)", - "type": "type_definition" - }, - "__main__.__execute__.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.constructor": { - "decorators": ["constructor"], - "pc": 456, - "type": "function" - }, - "__main__.constructor.Args": { - "full_name": "__main__.constructor.Args", - "members": { - "public_key": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.constructor.ImplicitArgs": { - "full_name": "__main__.constructor.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.constructor.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.constructor.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.get_nonce": { - "decorators": ["view"], - "pc": 513, - "type": "function" - }, - "__main__.get_nonce.Args": { - "full_name": "__main__.get_nonce.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.get_nonce.ImplicitArgs": { - "full_name": "__main__.get_nonce.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.get_nonce.Return": { - "cairo_type": "(res : felt)", - "type": "type_definition" - }, - "__main__.get_nonce.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.get_public_key": { - "decorators": ["view"], - "pc": 482, - "type": "function" - }, - "__main__.get_public_key.Args": { - "full_name": "__main__.get_public_key.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.get_public_key.ImplicitArgs": { - "full_name": "__main__.get_public_key.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.get_public_key.Return": { - "cairo_type": "(res : felt)", - "type": "type_definition" - }, - "__main__.get_public_key.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.is_valid_signature": { - "decorators": ["view"], - "pc": 605, - "type": "function" - }, - "__main__.is_valid_signature.Args": { - "full_name": "__main__.is_valid_signature.Args", - "members": { - "hash": { - "cairo_type": "felt", - "offset": 0 - }, - "signature": { - "cairo_type": "felt*", - "offset": 2 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.is_valid_signature.ImplicitArgs": { - "full_name": "__main__.is_valid_signature.ImplicitArgs", - "members": { - "ecdsa_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.SignatureBuiltin*", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "__main__.is_valid_signature.Return": { - "cairo_type": "(is_valid : felt)", - "type": "type_definition" - }, - "__main__.is_valid_signature.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.set_public_key": { - "decorators": ["external"], - "pc": 579, - "type": "function" - }, - "__main__.set_public_key.Args": { - "full_name": "__main__.set_public_key.Args", - "members": { - "new_public_key": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.set_public_key.ImplicitArgs": { - "full_name": "__main__.set_public_key.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.set_public_key.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.set_public_key.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.supportsInterface": { - "decorators": ["view"], - "pc": 544, - "type": "function" - }, - "__main__.supportsInterface.Args": { - "full_name": "__main__.supportsInterface.Args", - "members": { - "interfaceId": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.supportsInterface.ImplicitArgs": { - "full_name": "__main__.supportsInterface.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.supportsInterface.Return": { - "cairo_type": "(success : felt)", - "type": "type_definition" - }, - "__main__.supportsInterface.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.__execute__": { - "decorators": ["external"], - "pc": 685, - "type": "function" - }, - "__wrappers__.__execute__.Args": { - "full_name": "__wrappers__.__execute__.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.__execute__.ImplicitArgs": { - "full_name": "__wrappers__.__execute__.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.__execute__.Return": { - "cairo_type": "(syscall_ptr : felt*, pedersen_ptr : starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr : felt, ecdsa_ptr : starkware.cairo.common.cairo_builtins.SignatureBuiltin*, size : felt, retdata : felt*)", - "type": "type_definition" - }, - "__wrappers__.__execute__.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "__wrappers__.__execute__.__wrapped_func": { - "destination": "__main__.__execute__", - "type": "alias" - }, - "__wrappers__.__execute___encode_return": { - "decorators": [], - "pc": 666, - "type": "function" - }, - "__wrappers__.__execute___encode_return.Args": { - "full_name": "__wrappers__.__execute___encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "ret_value": { - "cairo_type": "(response_len : felt, response : felt*)", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.__execute___encode_return.ImplicitArgs": { - "full_name": "__wrappers__.__execute___encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.__execute___encode_return.Return": { - "cairo_type": "(range_check_ptr : felt, data_len : felt, data : felt*)", - "type": "type_definition" - }, - "__wrappers__.__execute___encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "__wrappers__.__execute___encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.constructor": { - "decorators": ["constructor"], - "pc": 463, - "type": "function" - }, - "__wrappers__.constructor.Args": { - "full_name": "__wrappers__.constructor.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.constructor.ImplicitArgs": { - "full_name": "__wrappers__.constructor.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.constructor.Return": { - "cairo_type": "(syscall_ptr : felt*, pedersen_ptr : starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr : felt, ecdsa_ptr : felt, size : felt, retdata : felt*)", - "type": "type_definition" - }, - "__wrappers__.constructor.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.constructor.__wrapped_func": { - "destination": "__main__.constructor", - "type": "alias" - }, - "__wrappers__.constructor_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.get_nonce": { - "decorators": ["view"], - "pc": 528, - "type": "function" - }, - "__wrappers__.get_nonce.Args": { - "full_name": "__wrappers__.get_nonce.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.get_nonce.ImplicitArgs": { - "full_name": "__wrappers__.get_nonce.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.get_nonce.Return": { - "cairo_type": "(syscall_ptr : felt*, pedersen_ptr : starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr : felt, ecdsa_ptr : felt, size : felt, retdata : felt*)", - "type": "type_definition" - }, - "__wrappers__.get_nonce.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.get_nonce.__wrapped_func": { - "destination": "__main__.get_nonce", - "type": "alias" - }, - "__wrappers__.get_nonce_encode_return": { - "decorators": [], - "pc": 519, - "type": "function" - }, - "__wrappers__.get_nonce_encode_return.Args": { - "full_name": "__wrappers__.get_nonce_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(res : felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.get_nonce_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.get_nonce_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.get_nonce_encode_return.Return": { - "cairo_type": "(range_check_ptr : felt, data_len : felt, data : felt*)", - "type": "type_definition" - }, - "__wrappers__.get_nonce_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.get_nonce_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.get_public_key": { - "decorators": ["view"], - "pc": 497, - "type": "function" - }, - "__wrappers__.get_public_key.Args": { - "full_name": "__wrappers__.get_public_key.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.get_public_key.ImplicitArgs": { - "full_name": "__wrappers__.get_public_key.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.get_public_key.Return": { - "cairo_type": "(syscall_ptr : felt*, pedersen_ptr : starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr : felt, ecdsa_ptr : felt, size : felt, retdata : felt*)", - "type": "type_definition" - }, - "__wrappers__.get_public_key.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.get_public_key.__wrapped_func": { - "destination": "__main__.get_public_key", - "type": "alias" - }, - "__wrappers__.get_public_key_encode_return": { - "decorators": [], - "pc": 488, - "type": "function" - }, - "__wrappers__.get_public_key_encode_return.Args": { - "full_name": "__wrappers__.get_public_key_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(res : felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.get_public_key_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.get_public_key_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.get_public_key_encode_return.Return": { - "cairo_type": "(range_check_ptr : felt, data_len : felt, data : felt*)", - "type": "type_definition" - }, - "__wrappers__.get_public_key_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.get_public_key_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.is_valid_signature": { - "decorators": ["view"], - "pc": 624, - "type": "function" - }, - "__wrappers__.is_valid_signature.Args": { - "full_name": "__wrappers__.is_valid_signature.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.is_valid_signature.ImplicitArgs": { - "full_name": "__wrappers__.is_valid_signature.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.is_valid_signature.Return": { - "cairo_type": "(syscall_ptr : felt*, pedersen_ptr : starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr : felt, ecdsa_ptr : starkware.cairo.common.cairo_builtins.SignatureBuiltin*, size : felt, retdata : felt*)", - "type": "type_definition" - }, - "__wrappers__.is_valid_signature.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.is_valid_signature.__wrapped_func": { - "destination": "__main__.is_valid_signature", - "type": "alias" - }, - "__wrappers__.is_valid_signature_encode_return": { - "decorators": [], - "pc": 615, - "type": "function" - }, - "__wrappers__.is_valid_signature_encode_return.Args": { - "full_name": "__wrappers__.is_valid_signature_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(is_valid : felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.is_valid_signature_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.is_valid_signature_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.is_valid_signature_encode_return.Return": { - "cairo_type": "(range_check_ptr : felt, data_len : felt, data : felt*)", - "type": "type_definition" - }, - "__wrappers__.is_valid_signature_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.is_valid_signature_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.set_public_key": { - "decorators": ["external"], - "pc": 586, - "type": "function" - }, - "__wrappers__.set_public_key.Args": { - "full_name": "__wrappers__.set_public_key.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.set_public_key.ImplicitArgs": { - "full_name": "__wrappers__.set_public_key.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.set_public_key.Return": { - "cairo_type": "(syscall_ptr : felt*, pedersen_ptr : starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr : felt, ecdsa_ptr : felt, size : felt, retdata : felt*)", - "type": "type_definition" - }, - "__wrappers__.set_public_key.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.set_public_key.__wrapped_func": { - "destination": "__main__.set_public_key", - "type": "alias" - }, - "__wrappers__.set_public_key_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.supportsInterface": { - "decorators": ["view"], - "pc": 560, - "type": "function" - }, - "__wrappers__.supportsInterface.Args": { - "full_name": "__wrappers__.supportsInterface.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.supportsInterface.ImplicitArgs": { - "full_name": "__wrappers__.supportsInterface.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.supportsInterface.Return": { - "cairo_type": "(syscall_ptr : felt*, pedersen_ptr : starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr : felt, ecdsa_ptr : felt, size : felt, retdata : felt*)", - "type": "type_definition" - }, - "__wrappers__.supportsInterface.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.supportsInterface.__wrapped_func": { - "destination": "__main__.supportsInterface", - "type": "alias" - }, - "__wrappers__.supportsInterface_encode_return": { - "decorators": [], - "pc": 551, - "type": "function" - }, - "__wrappers__.supportsInterface_encode_return.Args": { - "full_name": "__wrappers__.supportsInterface_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(success : felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.supportsInterface_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.supportsInterface_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.supportsInterface_encode_return.Return": { - "cairo_type": "(range_check_ptr : felt, data_len : felt, data : felt*)", - "type": "type_definition" - }, - "__wrappers__.supportsInterface_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.supportsInterface_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.account.library.Account": { - "type": "namespace" - }, - "openzeppelin.account.library.Account.Args": { - "full_name": "openzeppelin.account.library.Account.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.account.library.Account.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.account.library.Account.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.account.library.Account.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.Account._execute_list": { - "decorators": [], - "pc": 398, - "type": "function" - }, - "openzeppelin.account.library.Account._execute_list.Args": { - "full_name": "openzeppelin.account.library.Account._execute_list.Args", - "members": { - "calls": { - "cairo_type": "openzeppelin.account.library.Call*", - "offset": 1 - }, - "calls_len": { - "cairo_type": "felt", - "offset": 0 - }, - "response": { - "cairo_type": "felt*", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.account.library.Account._execute_list.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account._execute_list.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.account.library.Account._execute_list.Return": { - "cairo_type": "(response_len : felt)", - "type": "type_definition" - }, - "openzeppelin.account.library.Account._execute_list.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "openzeppelin.account.library.Account._from_call_array_to_call": { - "decorators": [], - "pc": 432, - "type": "function" - }, - "openzeppelin.account.library.Account._from_call_array_to_call.Args": { - "full_name": "openzeppelin.account.library.Account._from_call_array_to_call.Args", - "members": { - "call_array": { - "cairo_type": "openzeppelin.account.library.AccountCallArray*", - "offset": 1 - }, - "call_array_len": { - "cairo_type": "felt", - "offset": 0 - }, - "calldata": { - "cairo_type": "felt*", - "offset": 2 - }, - "calls": { - "cairo_type": "openzeppelin.account.library.Call*", - "offset": 3 - } - }, - "size": 4, - "type": "struct" - }, - "openzeppelin.account.library.Account._from_call_array_to_call.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account._from_call_array_to_call.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.account.library.Account._from_call_array_to_call.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.account.library.Account._from_call_array_to_call.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.Account.assert_only_self": { - "decorators": [], - "pc": 281, - "type": "function" - }, - "openzeppelin.account.library.Account.assert_only_self.Args": { - "full_name": "openzeppelin.account.library.Account.assert_only_self.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.account.library.Account.assert_only_self.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account.assert_only_self.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.account.library.Account.assert_only_self.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.account.library.Account.assert_only_self.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.Account.execute": { - "decorators": [], - "pc": 330, - "type": "function" - }, - "openzeppelin.account.library.Account.execute.Args": { - "full_name": "openzeppelin.account.library.Account.execute.Args", - "members": { - "call_array": { - "cairo_type": "openzeppelin.account.library.AccountCallArray*", - "offset": 1 - }, - "call_array_len": { - "cairo_type": "felt", - "offset": 0 - }, - "calldata": { - "cairo_type": "felt*", - "offset": 3 - }, - "calldata_len": { - "cairo_type": "felt", - "offset": 2 - }, - "nonce": { - "cairo_type": "felt", - "offset": 4 - } - }, - "size": 5, - "type": "struct" - }, - "openzeppelin.account.library.Account.execute.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account.execute.ImplicitArgs", - "members": { - "ecdsa_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.SignatureBuiltin*", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "openzeppelin.account.library.Account.execute.Return": { - "cairo_type": "(response_len : felt, response : felt*)", - "type": "type_definition" - }, - "openzeppelin.account.library.Account.execute.SIZEOF_LOCALS": { - "type": "const", - "value": 9 - }, - "openzeppelin.account.library.Account.get_nonce": { - "decorators": [], - "pc": 296, - "type": "function" - }, - "openzeppelin.account.library.Account.get_nonce.Args": { - "full_name": "openzeppelin.account.library.Account.get_nonce.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.account.library.Account.get_nonce.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account.get_nonce.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.account.library.Account.get_nonce.Return": { - "cairo_type": "(res : felt)", - "type": "type_definition" - }, - "openzeppelin.account.library.Account.get_nonce.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.Account.get_public_key": { - "decorators": [], - "pc": 290, - "type": "function" - }, - "openzeppelin.account.library.Account.get_public_key.Args": { - "full_name": "openzeppelin.account.library.Account.get_public_key.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.account.library.Account.get_public_key.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account.get_public_key.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.account.library.Account.get_public_key.Return": { - "cairo_type": "(res : felt)", - "type": "type_definition" - }, - "openzeppelin.account.library.Account.get_public_key.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.Account.initializer": { - "decorators": [], - "pc": 270, - "type": "function" - }, - "openzeppelin.account.library.Account.initializer.Args": { - "full_name": "openzeppelin.account.library.Account.initializer.Args", - "members": { - "_public_key": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.account.library.Account.initializer.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account.initializer.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.account.library.Account.initializer.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.account.library.Account.initializer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.Account.is_valid_signature": { - "decorators": [], - "pc": 311, - "type": "function" - }, - "openzeppelin.account.library.Account.is_valid_signature.Args": { - "full_name": "openzeppelin.account.library.Account.is_valid_signature.Args", - "members": { - "hash": { - "cairo_type": "felt", - "offset": 0 - }, - "signature": { - "cairo_type": "felt*", - "offset": 2 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.account.library.Account.is_valid_signature.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account.is_valid_signature.ImplicitArgs", - "members": { - "ecdsa_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.SignatureBuiltin*", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "openzeppelin.account.library.Account.is_valid_signature.Return": { - "cairo_type": "(is_valid : felt)", - "type": "type_definition" - }, - "openzeppelin.account.library.Account.is_valid_signature.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.Account.set_public_key": { - "decorators": [], - "pc": 302, - "type": "function" - }, - "openzeppelin.account.library.Account.set_public_key.Args": { - "full_name": "openzeppelin.account.library.Account.set_public_key.Args", - "members": { - "new_public_key": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.account.library.Account.set_public_key.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account.set_public_key.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.account.library.Account.set_public_key.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.account.library.Account.set_public_key.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.AccountCallArray": { - "full_name": "openzeppelin.account.library.AccountCallArray", - "members": { - "data_len": { - "cairo_type": "felt", - "offset": 3 - }, - "data_offset": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 1 - }, - "to": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "openzeppelin.account.library.Account_current_nonce": { - "type": "namespace" - }, - "openzeppelin.account.library.Account_current_nonce.Args": { - "full_name": "openzeppelin.account.library.Account_current_nonce.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.account.library.Account_current_nonce.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.account.library.Account_current_nonce.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account_current_nonce.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.account.library.Account_current_nonce.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.account.library.Account_current_nonce.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.Account_current_nonce.addr": { - "decorators": [], - "pc": 210, - "type": "function" - }, - "openzeppelin.account.library.Account_current_nonce.addr.Args": { - "full_name": "openzeppelin.account.library.Account_current_nonce.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.account.library.Account_current_nonce.addr.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account_current_nonce.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.account.library.Account_current_nonce.addr.Return": { - "cairo_type": "(res : felt)", - "type": "type_definition" - }, - "openzeppelin.account.library.Account_current_nonce.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.Account_current_nonce.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.account.library.Account_current_nonce.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.account.library.Account_current_nonce.read": { - "decorators": [], - "pc": 215, - "type": "function" - }, - "openzeppelin.account.library.Account_current_nonce.read.Args": { - "full_name": "openzeppelin.account.library.Account_current_nonce.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.account.library.Account_current_nonce.read.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account_current_nonce.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.account.library.Account_current_nonce.read.Return": { - "cairo_type": "(res : felt)", - "type": "type_definition" - }, - "openzeppelin.account.library.Account_current_nonce.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.Account_current_nonce.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.account.library.Account_current_nonce.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.account.library.Account_current_nonce.write": { - "decorators": [], - "pc": 228, - "type": "function" - }, - "openzeppelin.account.library.Account_current_nonce.write.Args": { - "full_name": "openzeppelin.account.library.Account_current_nonce.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.account.library.Account_current_nonce.write.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account_current_nonce.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.account.library.Account_current_nonce.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.account.library.Account_current_nonce.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.Account_public_key": { - "type": "namespace" - }, - "openzeppelin.account.library.Account_public_key.Args": { - "full_name": "openzeppelin.account.library.Account_public_key.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.account.library.Account_public_key.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.account.library.Account_public_key.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account_public_key.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.account.library.Account_public_key.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.account.library.Account_public_key.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.Account_public_key.addr": { - "decorators": [], - "pc": 240, - "type": "function" - }, - "openzeppelin.account.library.Account_public_key.addr.Args": { - "full_name": "openzeppelin.account.library.Account_public_key.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.account.library.Account_public_key.addr.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account_public_key.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.account.library.Account_public_key.addr.Return": { - "cairo_type": "(res : felt)", - "type": "type_definition" - }, - "openzeppelin.account.library.Account_public_key.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.Account_public_key.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.account.library.Account_public_key.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.account.library.Account_public_key.read": { - "decorators": [], - "pc": 245, - "type": "function" - }, - "openzeppelin.account.library.Account_public_key.read.Args": { - "full_name": "openzeppelin.account.library.Account_public_key.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.account.library.Account_public_key.read.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account_public_key.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.account.library.Account_public_key.read.Return": { - "cairo_type": "(res : felt)", - "type": "type_definition" - }, - "openzeppelin.account.library.Account_public_key.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.Account_public_key.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.account.library.Account_public_key.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.account.library.Account_public_key.write": { - "decorators": [], - "pc": 258, - "type": "function" - }, - "openzeppelin.account.library.Account_public_key.write.Args": { - "full_name": "openzeppelin.account.library.Account_public_key.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.account.library.Account_public_key.write.ImplicitArgs": { - "full_name": "openzeppelin.account.library.Account_public_key.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.account.library.Account_public_key.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.account.library.Account_public_key.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.account.library.Call": { - "full_name": "openzeppelin.account.library.Call", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 3 - }, - "calldata_len": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 1 - }, - "to": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "openzeppelin.account.library.ERC165": { - "destination": "openzeppelin.introspection.ERC165.ERC165", - "type": "alias" - }, - "openzeppelin.account.library.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.account.library.IACCOUNT_ID": { - "destination": "openzeppelin.utils.constants.IACCOUNT_ID", - "type": "alias" - }, - "openzeppelin.account.library.SignatureBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "type": "alias" - }, - "openzeppelin.account.library.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "openzeppelin.account.library.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "openzeppelin.account.library.call_contract": { - "destination": "starkware.starknet.common.syscalls.call_contract", - "type": "alias" - }, - "openzeppelin.account.library.get_caller_address": { - "destination": "starkware.starknet.common.syscalls.get_caller_address", - "type": "alias" - }, - "openzeppelin.account.library.get_contract_address": { - "destination": "starkware.starknet.common.syscalls.get_contract_address", - "type": "alias" - }, - "openzeppelin.account.library.get_fp_and_pc": { - "destination": "starkware.cairo.common.registers.get_fp_and_pc", - "type": "alias" - }, - "openzeppelin.account.library.get_tx_info": { - "destination": "starkware.starknet.common.syscalls.get_tx_info", - "type": "alias" - }, - "openzeppelin.account.library.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.account.library.verify_ecdsa_signature": { - "destination": "starkware.cairo.common.signature.verify_ecdsa_signature", - "type": "alias" - }, - "openzeppelin.introspection.ERC165.ERC165": { - "type": "namespace" - }, - "openzeppelin.introspection.ERC165.ERC165.Args": { - "full_name": "openzeppelin.introspection.ERC165.ERC165.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.introspection.ERC165.ERC165.ImplicitArgs": { - "full_name": "openzeppelin.introspection.ERC165.ERC165.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.introspection.ERC165.ERC165.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.introspection.ERC165.ERC165.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.introspection.ERC165.ERC165.register_interface": { - "decorators": [], - "pc": 196, - "type": "function" - }, - "openzeppelin.introspection.ERC165.ERC165.register_interface.Args": { - "full_name": "openzeppelin.introspection.ERC165.ERC165.register_interface.Args", - "members": { - "interface_id": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.introspection.ERC165.ERC165.register_interface.ImplicitArgs": { - "full_name": "openzeppelin.introspection.ERC165.ERC165.register_interface.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.introspection.ERC165.ERC165.register_interface.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.introspection.ERC165.ERC165.register_interface.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.introspection.ERC165.ERC165.supports_interface": { - "decorators": [], - "pc": 179, - "type": "function" - }, - "openzeppelin.introspection.ERC165.ERC165.supports_interface.Args": { - "full_name": "openzeppelin.introspection.ERC165.ERC165.supports_interface.Args", - "members": { - "interface_id": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.introspection.ERC165.ERC165.supports_interface.ImplicitArgs": { - "full_name": "openzeppelin.introspection.ERC165.ERC165.supports_interface.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.introspection.ERC165.ERC165.supports_interface.Return": { - "cairo_type": "(success : felt)", - "type": "type_definition" - }, - "openzeppelin.introspection.ERC165.ERC165.supports_interface.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces": { - "type": "namespace" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.Args": { - "full_name": "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.ImplicitArgs": { - "full_name": "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr": { - "decorators": [], - "pc": 138, - "type": "function" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr.Args": { - "full_name": "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr.Args", - "members": { - "interface_id": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr.ImplicitArgs": { - "full_name": "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr.Return": { - "cairo_type": "(res : felt)", - "type": "type_definition" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read": { - "decorators": [], - "pc": 152, - "type": "function" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read.Args": { - "full_name": "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read.Args", - "members": { - "interface_id": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read.ImplicitArgs": { - "full_name": "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read.Return": { - "cairo_type": "(is_supported : felt)", - "type": "type_definition" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write": { - "decorators": [], - "pc": 166, - "type": "function" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write.Args": { - "full_name": "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write.Args", - "members": { - "interface_id": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write.ImplicitArgs": { - "full_name": "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.introspection.ERC165.ERC165_supported_interfaces.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.introspection.ERC165.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.introspection.ERC165.IERC165_ID": { - "destination": "openzeppelin.utils.constants.IERC165_ID", - "type": "alias" - }, - "openzeppelin.introspection.ERC165.INVALID_ID": { - "destination": "openzeppelin.utils.constants.INVALID_ID", - "type": "alias" - }, - "openzeppelin.introspection.ERC165.SignatureBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "type": "alias" - }, - "openzeppelin.introspection.ERC165.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "openzeppelin.introspection.ERC165.assert_not_equal": { - "destination": "starkware.cairo.common.math.assert_not_equal", - "type": "alias" - }, - "openzeppelin.utils.constants.IACCOUNT_ID": { - "type": "const", - "value": 4044209476 - }, - "openzeppelin.utils.constants.IERC165_ID": { - "type": "const", - "value": 33540519 - }, - "openzeppelin.utils.constants.IERC721_ENUMERABLE_ID": { - "type": "const", - "value": 2014223715 - }, - "openzeppelin.utils.constants.IERC721_ID": { - "type": "const", - "value": 2158778573 - }, - "openzeppelin.utils.constants.IERC721_METADATA_ID": { - "type": "const", - "value": 1532892063 - }, - "openzeppelin.utils.constants.IERC721_RECEIVER_ID": { - "type": "const", - "value": 353073666 - }, - "openzeppelin.utils.constants.INVALID_ID": { - "type": "const", - "value": 4294967295 - }, - "openzeppelin.utils.constants.UINT8_MAX": { - "type": "const", - "value": 256 - }, - "starkware.cairo.common.alloc.alloc": { - "decorators": [], - "pc": 0, - "type": "function" - }, - "starkware.cairo.common.alloc.alloc.Args": { - "full_name": "starkware.cairo.common.alloc.alloc.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.alloc.alloc.ImplicitArgs": { - "full_name": "starkware.cairo.common.alloc.alloc.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.alloc.alloc.Return": { - "cairo_type": "(ptr : felt*)", - "type": "type_definition" - }, - "starkware.cairo.common.alloc.alloc.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.bool.FALSE": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.bool.TRUE": { - "type": "const", - "value": 1 - }, - "starkware.cairo.common.cairo_builtins.BitwiseBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "x_and_y": { - "cairo_type": "felt", - "offset": 2 - }, - "x_or_y": { - "cairo_type": "felt", - "offset": 4 - }, - "x_xor_y": { - "cairo_type": "felt", - "offset": 3 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcOpBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", - "members": { - "m": { - "cairo_type": "felt", - "offset": 4 - }, - "p": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 0 - }, - "q": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 2 - }, - "r": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcPoint": { - "destination": "starkware.cairo.common.ec_point.EcPoint", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.HashBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "members": { - "result": { - "cairo_type": "felt", - "offset": 2 - }, - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.SignatureBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "members": { - "message": { - "cairo_type": "felt", - "offset": 1 - }, - "pub_key": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.dict_access.DictAccess": { - "full_name": "starkware.cairo.common.dict_access.DictAccess", - "members": { - "key": { - "cairo_type": "felt", - "offset": 0 - }, - "new_value": { - "cairo_type": "felt", - "offset": 2 - }, - "prev_value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.ec_point.EcPoint": { - "full_name": "starkware.cairo.common.ec_point.EcPoint", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.hash.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "starkware.cairo.common.hash.hash2": { - "decorators": [], - "pc": 3, - "type": "function" - }, - "starkware.cairo.common.hash.hash2.Args": { - "full_name": "starkware.cairo.common.hash.hash2.Args", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.hash.hash2.ImplicitArgs": { - "full_name": "starkware.cairo.common.hash.hash2.ImplicitArgs", - "members": { - "hash_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.hash.hash2.Return": { - "cairo_type": "(result : felt)", - "type": "type_definition" - }, - "starkware.cairo.common.hash.hash2.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_250_bit": { - "decorators": ["known_ap_change"], - "pc": 31, - "type": "function" - }, - "starkware.cairo.common.math.assert_250_bit.Args": { - "full_name": "starkware.cairo.common.math.assert_250_bit.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_250_bit.HIGH_BOUND": { - "type": "const", - "value": 5316911983139663491615228241121378304 - }, - "starkware.cairo.common.math.assert_250_bit.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_250_bit.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_250_bit.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_250_bit.SHIFT": { - "type": "const", - "value": 340282366920938463463374607431768211456 - }, - "starkware.cairo.common.math.assert_250_bit.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_250_bit.UPPER_BOUND": { - "type": "const", - "value": 1809251394333065553493296640760748560207343510400633813116524750123642650624 - }, - "starkware.cairo.common.math.assert_250_bit.high": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.high", - "references": [ - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 31, - "value": "[cast([fp + (-4)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.low": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.low", - "references": [ - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 31, - "value": "[cast([fp + (-4)], felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.value", - "references": [ - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 31, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_not_equal": { - "decorators": [], - "pc": 25, - "type": "function" - }, - "starkware.cairo.common.math.assert_not_equal.Args": { - "full_name": "starkware.cairo.common.math.assert_not_equal.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.assert_not_equal.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_not_equal.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.math.assert_not_equal.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_not_equal.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_not_equal.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_not_equal.a", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 25, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_not_equal.b": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_not_equal.b", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 25, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.memcpy.memcpy": { - "decorators": [], - "pc": 9, - "type": "function" - }, - "starkware.cairo.common.memcpy.memcpy.Args": { - "full_name": "starkware.cairo.common.memcpy.memcpy.Args", - "members": { - "dst": { - "cairo_type": "felt*", - "offset": 0 - }, - "len": { - "cairo_type": "felt", - "offset": 2 - }, - "src": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.ImplicitArgs": { - "full_name": "starkware.cairo.common.memcpy.memcpy.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.LoopFrame": { - "full_name": "starkware.cairo.common.memcpy.memcpy.LoopFrame", - "members": { - "dst": { - "cairo_type": "felt*", - "offset": 0 - }, - "src": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.memcpy.memcpy.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.memcpy.memcpy.continue_copying": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.memcpy.memcpy.continue_copying", - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 3 - }, - "pc": 16, - "value": "[cast(ap, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.memcpy.memcpy.len": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.memcpy.memcpy.len", - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 9, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.memcpy.memcpy.loop": { - "pc": 14, - "type": "label" - }, - "starkware.cairo.common.registers.get_ap": { - "destination": "starkware.cairo.lang.compiler.lib.registers.get_ap", - "type": "alias" - }, - "starkware.cairo.common.registers.get_fp_and_pc": { - "destination": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc", - "type": "alias" - }, - "starkware.cairo.common.signature.SignatureBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "type": "alias" - }, - "starkware.cairo.common.signature.verify_ecdsa_signature": { - "decorators": [], - "pc": 133, - "type": "function" - }, - "starkware.cairo.common.signature.verify_ecdsa_signature.Args": { - "full_name": "starkware.cairo.common.signature.verify_ecdsa_signature.Args", - "members": { - "message": { - "cairo_type": "felt", - "offset": 0 - }, - "public_key": { - "cairo_type": "felt", - "offset": 1 - }, - "signature_r": { - "cairo_type": "felt", - "offset": 2 - }, - "signature_s": { - "cairo_type": "felt", - "offset": 3 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.cairo.common.signature.verify_ecdsa_signature.ImplicitArgs": { - "full_name": "starkware.cairo.common.signature.verify_ecdsa_signature.ImplicitArgs", - "members": { - "ecdsa_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.SignatureBuiltin*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.signature.verify_ecdsa_signature.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.signature.verify_ecdsa_signature.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.signature.verify_ecdsa_signature.ecdsa_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.SignatureBuiltin*", - "full_name": "starkware.cairo.common.signature.verify_ecdsa_signature.ecdsa_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 133, - "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.SignatureBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 135, - "value": "cast([fp + (-7)] + 2, starkware.cairo.common.cairo_builtins.SignatureBuiltin*)" - } - ], - "type": "reference" - }, - "starkware.cairo.common.signature.verify_ecdsa_signature.signature_r": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.signature.verify_ecdsa_signature.signature_r", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 133, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.signature.verify_ecdsa_signature.signature_s": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.signature.verify_ecdsa_signature.signature_s", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 133, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc": { - "decorators": [], - "pc": 24, - "type": "function" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.Args": { - "full_name": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.ImplicitArgs": { - "full_name": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.Return": { - "cairo_type": "(fp_val : felt*, pc_val : felt*)", - "type": "type_definition" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.storage.ADDR_BOUND": { - "type": "const", - "value": -106710729501573572985208420194530329073740042555888586719489 - }, - "starkware.starknet.common.storage.MAX_STORAGE_ITEM_SIZE": { - "type": "const", - "value": 256 - }, - "starkware.starknet.common.storage.assert_250_bit": { - "destination": "starkware.cairo.common.math.assert_250_bit", - "type": "alias" - }, - "starkware.starknet.common.storage.normalize_address": { - "decorators": ["known_ap_change"], - "pc": 44, - "type": "function" - }, - "starkware.starknet.common.storage.normalize_address.Args": { - "full_name": "starkware.starknet.common.storage.normalize_address.Args", - "members": { - "addr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.storage.normalize_address.ImplicitArgs": { - "full_name": "starkware.starknet.common.storage.normalize_address.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.storage.normalize_address.Return": { - "cairo_type": "(res : felt)", - "type": "type_definition" - }, - "starkware.starknet.common.storage.normalize_address.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.storage.normalize_address.addr": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.addr", - "references": [ - { - "ap_tracking_data": { - "group": 6, - "offset": 0 - }, - "pc": 44, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.normalize_address.is_250": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.is_250", - "references": [ - { - "ap_tracking_data": { - "group": 6, - "offset": 2 - }, - "pc": 64, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.normalize_address.is_small": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.is_small", - "references": [ - { - "ap_tracking_data": { - "group": 6, - "offset": 1 - }, - "pc": 46, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.CALL_CONTRACT_SELECTOR": { - "type": "const", - "value": 20853273475220472486191784820 - }, - "starkware.starknet.common.syscalls.CallContract": { - "full_name": "starkware.starknet.common.syscalls.CallContract", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractRequest": { - "full_name": "starkware.starknet.common.syscalls.CallContractRequest", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractResponse": { - "full_name": "starkware.starknet.common.syscalls.CallContractResponse", - "members": { - "retdata": { - "cairo_type": "felt*", - "offset": 1 - }, - "retdata_size": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DELEGATE_CALL_SELECTOR": { - "type": "const", - "value": 21167594061783206823196716140 - }, - "starkware.starknet.common.syscalls.DELEGATE_L1_HANDLER_SELECTOR": { - "type": "const", - "value": 23274015802972845247556842986379118667122 - }, - "starkware.starknet.common.syscalls.DEPLOY_SELECTOR": { - "type": "const", - "value": 75202468540281 - }, - "starkware.starknet.common.syscalls.Deploy": { - "full_name": "starkware.starknet.common.syscalls.Deploy", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.DeployRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.DeployResponse", - "offset": 6 - } - }, - "size": 9, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployRequest": { - "full_name": "starkware.starknet.common.syscalls.DeployRequest", - "members": { - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "constructor_calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "constructor_calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address_salt": { - "cairo_type": "felt", - "offset": 2 - }, - "reserved": { - "cairo_type": "felt", - "offset": 5 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployResponse": { - "full_name": "starkware.starknet.common.syscalls.DeployResponse", - "members": { - "constructor_retdata": { - "cairo_type": "felt*", - "offset": 2 - }, - "constructor_retdata_size": { - "cairo_type": "felt", - "offset": 1 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DictAccess": { - "destination": "starkware.cairo.common.dict_access.DictAccess", - "type": "alias" - }, - "starkware.starknet.common.syscalls.EMIT_EVENT_SELECTOR": { - "type": "const", - "value": 1280709301550335749748 - }, - "starkware.starknet.common.syscalls.EmitEvent": { - "full_name": "starkware.starknet.common.syscalls.EmitEvent", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 4 - }, - "data_len": { - "cairo_type": "felt", - "offset": 3 - }, - "keys": { - "cairo_type": "felt*", - "offset": 2 - }, - "keys_len": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GET_BLOCK_NUMBER_SELECTOR": { - "type": "const", - "value": 1448089106835523001438702345020786 - }, - "starkware.starknet.common.syscalls.GET_BLOCK_TIMESTAMP_SELECTOR": { - "type": "const", - "value": 24294903732626645868215235778792757751152 - }, - "starkware.starknet.common.syscalls.GET_CALLER_ADDRESS_SELECTOR": { - "type": "const", - "value": 94901967781393078444254803017658102643 - }, - "starkware.starknet.common.syscalls.GET_CONTRACT_ADDRESS_SELECTOR": { - "type": "const", - "value": 6219495360805491471215297013070624192820083 - }, - "starkware.starknet.common.syscalls.GET_SEQUENCER_ADDRESS_SELECTOR": { - "type": "const", - "value": 1592190833581991703053805829594610833820054387 - }, - "starkware.starknet.common.syscalls.GET_TX_INFO_SELECTOR": { - "type": "const", - "value": 1317029390204112103023 - }, - "starkware.starknet.common.syscalls.GET_TX_SIGNATURE_SELECTOR": { - "type": "const", - "value": 1448089128652340074717162277007973 - }, - "starkware.starknet.common.syscalls.GetBlockNumber": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumber", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberRequest": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberResponse": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberResponse", - "members": { - "block_number": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestamp": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestamp", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampRequest": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampResponse": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", - "members": { - "block_timestamp": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "members": { - "caller_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddress": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "members": { - "sequencer_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfo": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfo", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoRequest": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfoRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoResponse": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfoResponse", - "members": { - "tx_info": { - "cairo_type": "starkware.starknet.common.syscalls.TxInfo*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignature": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignature", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureRequest": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureResponse": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "members": { - "signature": { - "cairo_type": "felt*", - "offset": 1 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_L1_HANDLER_SELECTOR": { - "type": "const", - "value": 436233452754198157705746250789557519228244616562 - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_SELECTOR": { - "type": "const", - "value": 92376026794327011772951660 - }, - "starkware.starknet.common.syscalls.LibraryCall": { - "full_name": "starkware.starknet.common.syscalls.LibraryCall", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.LibraryCallRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LibraryCallRequest": { - "full_name": "starkware.starknet.common.syscalls.LibraryCallRequest", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.SEND_MESSAGE_TO_L1_SELECTOR": { - "type": "const", - "value": 433017908768303439907196859243777073 - }, - "starkware.starknet.common.syscalls.STORAGE_READ_SELECTOR": { - "type": "const", - "value": 100890693370601760042082660 - }, - "starkware.starknet.common.syscalls.STORAGE_WRITE_SELECTOR": { - "type": "const", - "value": 25828017502874050592466629733 - }, - "starkware.starknet.common.syscalls.SendMessageToL1SysCall": { - "full_name": "starkware.starknet.common.syscalls.SendMessageToL1SysCall", - "members": { - "payload_ptr": { - "cairo_type": "felt*", - "offset": 3 - }, - "payload_size": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "to_address": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageRead": { - "full_name": "starkware.starknet.common.syscalls.StorageRead", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadResponse", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadRequest": { - "full_name": "starkware.starknet.common.syscalls.StorageReadRequest", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadResponse": { - "full_name": "starkware.starknet.common.syscalls.StorageReadResponse", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageWrite": { - "full_name": "starkware.starknet.common.syscalls.StorageWrite", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.TxInfo": { - "full_name": "starkware.starknet.common.syscalls.TxInfo", - "members": { - "account_contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "chain_id": { - "cairo_type": "felt", - "offset": 6 - }, - "max_fee": { - "cairo_type": "felt", - "offset": 2 - }, - "signature": { - "cairo_type": "felt*", - "offset": 4 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 3 - }, - "transaction_hash": { - "cairo_type": "felt", - "offset": 5 - }, - "version": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.call_contract": { - "decorators": [], - "pc": 84, - "type": "function" - }, - "starkware.starknet.common.syscalls.call_contract.Args": { - "full_name": "starkware.starknet.common.syscalls.call_contract.Args", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 3 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 2 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 0 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.starknet.common.syscalls.call_contract.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.call_contract.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.call_contract.Return": { - "cairo_type": "(retdata_size : felt, retdata : felt*)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.call_contract.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.call_contract.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.call_contract.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 84, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 1 - }, - "pc": 91, - "value": "cast([fp + (-7)] + 7, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.get_caller_address": { - "decorators": [], - "pc": 96, - "type": "function" - }, - "starkware.starknet.common.syscalls.get_caller_address.Args": { - "full_name": "starkware.starknet.common.syscalls.get_caller_address.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address.Return": { - "cairo_type": "(caller_address : felt)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.get_caller_address.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 96, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 1 - }, - "pc": 99, - "value": "cast([fp + (-3)] + 2, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.get_contract_address": { - "decorators": [], - "pc": 103, - "type": "function" - }, - "starkware.starknet.common.syscalls.get_contract_address.Args": { - "full_name": "starkware.starknet.common.syscalls.get_contract_address.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_contract_address.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.get_contract_address.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_contract_address.Return": { - "cairo_type": "(contract_address : felt)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.get_contract_address.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.get_contract_address.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.get_contract_address.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 103, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 1 - }, - "pc": 106, - "value": "cast([fp + (-3)] + 2, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.get_tx_info": { - "decorators": [], - "pc": 126, - "type": "function" - }, - "starkware.starknet.common.syscalls.get_tx_info.Args": { - "full_name": "starkware.starknet.common.syscalls.get_tx_info.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_tx_info.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.get_tx_info.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_tx_info.Return": { - "cairo_type": "(tx_info : starkware.starknet.common.syscalls.TxInfo*)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.get_tx_info.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.get_tx_info.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.get_tx_info.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 126, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 1 - }, - "pc": 129, - "value": "cast([fp + (-3)] + 2, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read": { - "decorators": [], - "pc": 110, - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_read.Args": { - "full_name": "starkware.starknet.common.syscalls.storage_read.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.storage_read.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.Return": { - "cairo_type": "(value : felt)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.storage_read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_read.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 110, - "value": "[cast(fp + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 1 - }, - "pc": 114, - "value": "cast([fp + (-4)] + 3, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_write": { - "decorators": [], - "pc": 118, - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_write.Args": { - "full_name": "starkware.starknet.common.syscalls.storage_write.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.storage_write.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.storage_write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_write.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 118, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 1 - }, - "pc": 123, - "value": "cast([fp + (-5)] + 3, felt*)" - } - ], - "type": "reference" - } - }, - "main_scope": "__main__", - "prime": "0x800000000000011000000000000000000000000000000000000000000000001", - "reference_manager": { - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 9, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 2, - "offset": 3 - }, - "pc": 16, - "value": "[cast(ap, felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 25, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 25, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 31, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 31, - "value": "[cast([fp + (-4)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 31, - "value": "[cast([fp + (-4)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 6, - "offset": 0 - }, - "pc": 44, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 6, - "offset": 1 - }, - "pc": 46, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 6, - "offset": 2 - }, - "pc": 64, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 84, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 96, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 103, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 110, - "value": "[cast(fp + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 118, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 126, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 133, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 133, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 133, - "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.SignatureBuiltin**)]" - } - ] - } - } -} diff --git a/assets/compiled_contracts/counter.json b/assets/compiled_contracts/counter.json deleted file mode 100644 index eba35e96..00000000 --- a/assets/compiled_contracts/counter.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "abi": [ - { - "type": "impl", - "name": "CounterImpl", - "interface_name": "starknet_dart::counter::ICounter" - }, - { - "type": "interface", - "name": "starknet_dart::counter::ICounter", - "items": [ - { - "type": "function", - "name": "increment", - "inputs": [], - "outputs": [], - "state_mutability": "external" - }, - { - "type": "function", - "name": "decrement", - "inputs": [], - "outputs": [], - "state_mutability": "external" - }, - { - "type": "function", - "name": "increase_count_by", - "inputs": [ - { - "name": "number", - "type": "core::integer::u64" - } - ], - "outputs": [], - "state_mutability": "external" - }, - { - "type": "function", - "name": "get_current_count", - "inputs": [], - "outputs": [ - { - "type": "core::integer::u64" - } - ], - "state_mutability": "view" - } - ] - }, - { - "type": "constructor", - "name": "constructor", - "inputs": [] - }, - { - "type": "event", - "name": "starknet_dart::counter::Counter::Event", - "kind": "enum", - "variants": [] - } - ] -} \ No newline at end of file diff --git a/assets/compiled_contracts/erc20.json b/assets/compiled_contracts/erc20.json deleted file mode 100644 index 617963fb..00000000 --- a/assets/compiled_contracts/erc20.json +++ /dev/null @@ -1,36521 +0,0 @@ -{ - "abi": [ - { - "inputs": [], - "name": "decimals", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "get_total_supply", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "user", - "type": "felt" - } - ], - "name": "balance_of", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "spender", - "type": "felt" - } - ], - "name": "allowance", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "initialize", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "recipient", - "type": "felt" - }, - { - "name": "amount", - "type": "felt" - } - ], - "name": "mint", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "recipient", - "type": "felt" - }, - { - "name": "amount", - "type": "felt" - } - ], - "name": "transfer", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "sender", - "type": "felt" - }, - { - "name": "recipient", - "type": "felt" - }, - { - "name": "amount", - "type": "felt" - } - ], - "name": "transfer_from", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "spender", - "type": "felt" - }, - { - "name": "amount", - "type": "felt" - } - ], - "name": "approve", - "outputs": [], - "type": "function" - } - ], - "entry_points_by_type": { - "CONSTRUCTOR": [], - "EXTERNAL": [ - { - "offset": "0xe5", - "selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9" - }, - { - "offset": "0x191", - "selector": "0x79dc0da7c54b95f10aa182ad0a46400db63156920adb65eca2654c0945a463" - }, - { - "offset": "0x1fc", - "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e" - }, - { - "offset": "0x163", - "selector": "0x1e888a1026b19c8c0b57c72d63ed1737106aa10034105b980ba117bd0c29fe1" - }, - { - "offset": "0x24e", - "selector": "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c" - }, - { - "offset": "0x11f", - "selector": "0x2819e8b2b82ee4c56798709651ab9e8537f644c0823e42ba017efce4f2077e4" - }, - { - "offset": "0x1dc", - "selector": "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354" - }, - { - "offset": "0x13f", - "selector": "0x35a73cd311a05d46deda634c5ee045db92f811b4e74bca4437fcb5302b7af33" - }, - { - "offset": "0x22d", - "selector": "0x3704ffe8fba161be0e994951751a5033b1462b918ff785c0a636be718dfdb68" - } - ], - "L1_HANDLER": [] - }, - "program": { - "builtins": ["pedersen", "range_check", "ecdsa"], - "data": [ - "0x400380007ffb7ffc", - "0x400380017ffb7ffd", - "0x482680017ffb8000", - "0x3", - "0x480280027ffb8000", - "0x208b7fff7fff7ffe", - "0x400380007ffc7ffd", - "0x482680017ffc8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x48297ffc80007ffd", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffb", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff6", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff6", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x3ffffffffffffffffffffffffffffff", - "0x480280017ffc8000", - "0x48307fff80007ffe", - "0x400280027ffc7fff", - "0x480280017ffc8000", - "0x484480017fff8000", - "0x100000000000000000000000000000000", - "0x480280007ffc8000", - "0x40317fff7ffe7ffd", - "0x482680017ffc8000", - "0x3", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x20680017fff7fff", - "0x10", - "0x480a7ffc7fff8000", - "0x482680017ffd8000", - "0x11000000000000000000000000000000000000000000000101", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48127ffe7fff8000", - "0x48287ffd80007ffe", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe7", - "0x482680017ffd8000", - "0x11000000000000000000000000000000000000000000000101", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x20680017fff7fff", - "0xc", - "0x40780017fff7fff", - "0xa", - "0x480680017fff8000", - "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeff", - "0x480a7ffc7fff8000", - "0x48287ffd80007ffe", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd8", - "0x10780017fff7fff", - "0x8", - "0x40780017fff7fff", - "0xb", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd0", - "0x480a7ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x47657443616c6c657241646472657373", - "0x400280007ffd7fff", - "0x482680017ffd8000", - "0x2", - "0x480280017ffd8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x53746f7261676552656164", - "0x400280007ffc7fff", - "0x400380017ffc7ffd", - "0x482680017ffc8000", - "0x3", - "0x480280027ffc8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x53746f726167655772697465", - "0x400280007ffb7fff", - "0x400380017ffb7ffc", - "0x400380027ffb7ffd", - "0x482680017ffb8000", - "0x3", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480680017fff8000", - "0x25b1ef8ee6544359221f3cf316f768360e83448109193bdcef77f52a79d95c4", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff99", - "0x480a7ffc7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffba", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdc", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe2", - "0x480a7ff97fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd5", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0xbf4c436d6f8521e5c6189511c75075de702ad597ce22c1786275e8e5167ec7", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff70", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff6d", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff8e", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", - "0x480a7ff97fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffaf", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdd", - "0x480a7ff87fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa7", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x1557182e4359a1f0c6301278e8f5b35a776ab58d39892581e357578fb287836", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff8f", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff89", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x12", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff4", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff4", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x48127ffb7fff8000", - "0x480280037ffb8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x3c0ba99f1a18bcdc81fcbcb6b4f15a9a6725f937075aed6fac107ffcb147068", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff58", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff52", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffae", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x480280037ffb8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff40", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffea", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x480280037ffb8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff48", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x2", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x480280037ffb8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff7e", - "0x400680017fff7fff", - "0x0", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff82", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffec8", - "0x48127ffe7fff8000", - "0x48127ff77fff8000", - "0x48127ff77fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x3e8", - "0x1104800180018000", - "0x13", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe3", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480280037ffb8000", - "0x480680017fff8000", - "0x0", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffece", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffc7fff8000", - "0x48287ffd7ffb8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffed5", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff13", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48287ffd7ffc8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff1a", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb8", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe50", - "0x48127fe97fff8000", - "0x48127fe97fff8000", - "0x48127ffd7fff8000", - "0x480a7ffb7fff8000", - "0x48287ffd80007fe8", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeba", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea9", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffc7fff8000", - "0x48287ffd7ffb8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb0", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc9", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x2", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480280037ffb8000", - "0x480680017fff8000", - "0x0", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe5d", - "0x48127ffe7fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbf", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x2", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480280037ffb8000", - "0x480680017fff8000", - "0x0", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe3d", - "0x48127ffe7fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x48127ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe87", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdf3", - "0x48127fe97fff8000", - "0x48127fe97fff8000", - "0x48127ffd7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff93", - "0x480a7ffb7fff8000", - "0x48127e9d7fff8000", - "0x48287ffd80007ee0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe84", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x3", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x480280027ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdb", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480280037ffb8000", - "0x480680017fff8000", - "0x0", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe0b", - "0x48127ffe7fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe63", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x2", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480280037ffb8000", - "0x480680017fff8000", - "0x0", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe" - ], - "debug_info": { - "file_contents": { - "autogen/starknet/arg_processor/29637b66643568891912d1ed3f5b810e37fc6dff63d2db9fba473c1883482e6f.cairo": "let __calldata_actual_size = __calldata_ptr - cast([fp + (-3)], felt*)\n", - "autogen/starknet/arg_processor/7a16feca69d1dc1343a49177e1e57103319136de3f2c6fabefae170177a1305e.cairo": "let __calldata_arg_amount = [__calldata_ptr]\nlet __calldata_ptr = __calldata_ptr + 1\n", - "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo": "assert [fp + (-4)] = __calldata_actual_size\n", - "autogen/starknet/arg_processor/8829423950ca8f358b1f1f4e14861fbd5253013d1565162e3d2a80eaaf7e8d77.cairo": "let __calldata_arg_recipient = [__calldata_ptr]\nlet __calldata_ptr = __calldata_ptr + 1\n", - "autogen/starknet/arg_processor/996831336aa683d58abab90a9e39f7f65bcd058e5d407684eb0adeb83cec2201.cairo": "let __calldata_arg_user = [__calldata_ptr]\nlet __calldata_ptr = __calldata_ptr + 1\n", - "autogen/starknet/arg_processor/a5022f1799ae188355eced7568bef585aa5b2f8cc40c3733c5cbf6371c6aa2b5.cairo": "let __calldata_arg_owner = [__calldata_ptr]\nlet __calldata_ptr = __calldata_ptr + 1\n", - "autogen/starknet/arg_processor/ee5d3071c88185a8819da2ec67ac8b0a97b693cffcf26f7d98030f1554bd0568.cairo": "let __calldata_arg_sender = [__calldata_ptr]\nlet __calldata_ptr = __calldata_ptr + 1\n", - "autogen/starknet/arg_processor/f5eaaf70cb77231309fcb9fe064570b7d1dd9f798db7541c13146b187dbbc1d7.cairo": "let __calldata_arg_spender = [__calldata_ptr]\nlet __calldata_ptr = __calldata_ptr + 1\n", - "autogen/starknet/arg_processor/fee896b6d05b2e98056b5628baa6fbee0adfb8960f3fee9d79fd2f066956cc42.cairo": "assert [__return_value_ptr] = ret_struct.res\nlet __return_value_ptr = __return_value_ptr + 1\n", - "autogen/starknet/external/allowance/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo": "let ecdsa_ptr = [cast([fp + (-5)] + 3, felt*)]\n", - "autogen/starknet/external/allowance/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/allowance/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo": "let pedersen_ptr = [cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]\n", - "autogen/starknet/external/allowance/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo": "let range_check_ptr = [cast([fp + (-5)] + 2, felt*)]\n", - "autogen/starknet/external/allowance/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo": "let syscall_ptr = [cast([fp + (-5)] + 0, felt**)]\n", - "autogen/starknet/external/allowance/fcc531d44c33ac611268df1da02b958151bfd9f816026d7d72465cdf332b83eb.cairo": "let ret_struct = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(owner=__calldata_arg_owner, spender=__calldata_arg_spender,)\nlet (range_check_ptr, retdata_size, retdata) = allowance_encode_return(ret_struct, range_check_ptr)\n", - "autogen/starknet/external/approve/62256116ec57d2cf92c90bf84e5089fd9bb61bdcd366d9ec2bc048bca7cca307.cairo": "let ret_struct = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(spender=__calldata_arg_spender, amount=__calldata_arg_amount,)\n%{ memory[ap] = segments.add() %} # Allocate memory for return value.\ntempvar retdata : felt*\nlet retdata_size = 0\n", - "autogen/starknet/external/approve/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo": "let ecdsa_ptr = [cast([fp + (-5)] + 3, felt*)]\n", - "autogen/starknet/external/approve/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/approve/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo": "let pedersen_ptr = [cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]\n", - "autogen/starknet/external/approve/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo": "let range_check_ptr = [cast([fp + (-5)] + 2, felt*)]\n", - "autogen/starknet/external/approve/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo": "let syscall_ptr = [cast([fp + (-5)] + 0, felt**)]\n", - "autogen/starknet/external/balance_of/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo": "let ecdsa_ptr = [cast([fp + (-5)] + 3, felt*)]\n", - "autogen/starknet/external/balance_of/8879196e17a21df624b800e966c6906d5a9e1acacef5dc096ac4b35ceaef258c.cairo": "let ret_struct = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(user=__calldata_arg_user,)\nlet (range_check_ptr, retdata_size, retdata) = balance_of_encode_return(ret_struct, range_check_ptr)\n", - "autogen/starknet/external/balance_of/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/balance_of/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo": "let pedersen_ptr = [cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]\n", - "autogen/starknet/external/balance_of/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo": "let range_check_ptr = [cast([fp + (-5)] + 2, felt*)]\n", - "autogen/starknet/external/balance_of/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo": "let syscall_ptr = [cast([fp + (-5)] + 0, felt**)]\n", - "autogen/starknet/external/decimals/29aa250fc3350a9f31b72cc1f90d1836370cfa24280d3a3794157df45b73f6a9.cairo": "let ret_struct = __wrapped_func{}()\nlet (range_check_ptr, retdata_size, retdata) = decimals_encode_return(ret_struct, range_check_ptr)\n", - "autogen/starknet/external/decimals/2b2b112e26c3beede5b9972951116a97636fe75acd4b9f33c1ffe390f55843c4.cairo": "let pedersen_ptr = [cast([fp + (-5)] + 1, felt*)]\n", - "autogen/starknet/external/decimals/5fde12919a619b4f3b6db54e029b6f16cf362872762815d37c1ecd8dc9763296.cairo": "let syscall_ptr = [cast([fp + (-5)] + 0, felt*)]\n", - "autogen/starknet/external/decimals/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo": "let ecdsa_ptr = [cast([fp + (-5)] + 3, felt*)]\n", - "autogen/starknet/external/decimals/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/decimals/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo": "let range_check_ptr = [cast([fp + (-5)] + 2, felt*)]\n", - "autogen/starknet/external/get_total_supply/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo": "let ecdsa_ptr = [cast([fp + (-5)] + 3, felt*)]\n", - "autogen/starknet/external/get_total_supply/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/get_total_supply/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo": "let pedersen_ptr = [cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]\n", - "autogen/starknet/external/get_total_supply/c968b0a0274c4d4d05dd2024f19d5a639755cdd3a7dc35405733e09c8fe279a3.cairo": "let ret_struct = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}()\nlet (range_check_ptr, retdata_size, retdata) = get_total_supply_encode_return(ret_struct, range_check_ptr)\n", - "autogen/starknet/external/get_total_supply/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo": "let range_check_ptr = [cast([fp + (-5)] + 2, felt*)]\n", - "autogen/starknet/external/get_total_supply/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo": "let syscall_ptr = [cast([fp + (-5)] + 0, felt**)]\n", - "autogen/starknet/external/initialize/65afca6042dd7c8a6e82d579494fa4fa955e0d1232b8c498dd8d1f04bd61bada.cairo": "let ret_struct = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}()\n%{ memory[ap] = segments.add() %} # Allocate memory for return value.\ntempvar retdata : felt*\nlet retdata_size = 0\n", - "autogen/starknet/external/initialize/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo": "let ecdsa_ptr = [cast([fp + (-5)] + 3, felt*)]\n", - "autogen/starknet/external/initialize/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/initialize/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo": "let pedersen_ptr = [cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]\n", - "autogen/starknet/external/initialize/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo": "let range_check_ptr = [cast([fp + (-5)] + 2, felt*)]\n", - "autogen/starknet/external/initialize/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo": "let syscall_ptr = [cast([fp + (-5)] + 0, felt**)]\n", - "autogen/starknet/external/mint/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo": "let ret_struct = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(recipient=__calldata_arg_recipient, amount=__calldata_arg_amount,)\n%{ memory[ap] = segments.add() %} # Allocate memory for return value.\ntempvar retdata : felt*\nlet retdata_size = 0\n", - "autogen/starknet/external/mint/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo": "let ecdsa_ptr = [cast([fp + (-5)] + 3, felt*)]\n", - "autogen/starknet/external/mint/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/mint/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo": "let pedersen_ptr = [cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]\n", - "autogen/starknet/external/mint/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo": "let range_check_ptr = [cast([fp + (-5)] + 2, felt*)]\n", - "autogen/starknet/external/mint/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo": "let syscall_ptr = [cast([fp + (-5)] + 0, felt**)]\n", - "autogen/starknet/external/return/allowance/731ff6b599ca59016c48bfe67f45f3e776e812152f572e318f7517cdd4eaa13a.cairo": "func allowance_encode_return(ret_struct : __main__.allowance.Return, range_check_ptr) -> (\n range_check_ptr, data_len : felt, data : felt*):\n %{ memory[ap] = segments.add() %}\n alloc_locals\n local __return_value_ptr_start : felt*\n let __return_value_ptr = __return_value_ptr_start\n with range_check_ptr:\n end\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start)\nend\n", - "autogen/starknet/external/return/balance_of/683814fac544917c5860cd1fcfeda6f4e5582c66a8deb4e7335bff554e21a45a.cairo": "func balance_of_encode_return(ret_struct : __main__.balance_of.Return, range_check_ptr) -> (\n range_check_ptr, data_len : felt, data : felt*):\n %{ memory[ap] = segments.add() %}\n alloc_locals\n local __return_value_ptr_start : felt*\n let __return_value_ptr = __return_value_ptr_start\n with range_check_ptr:\n end\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start)\nend\n", - "autogen/starknet/external/return/decimals/f932f3e96060fc4a651141d261844a3ea225e285c1f2e05218e5347ae192a887.cairo": "func decimals_encode_return(ret_struct : __main__.decimals.Return, range_check_ptr) -> (\n range_check_ptr, data_len : felt, data : felt*):\n %{ memory[ap] = segments.add() %}\n alloc_locals\n local __return_value_ptr_start : felt*\n let __return_value_ptr = __return_value_ptr_start\n with range_check_ptr:\n end\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start)\nend\n", - "autogen/starknet/external/return/get_total_supply/c1fb1e2a904ead052d8241ff0c2299a0275d69e871013bea513513895a92cd66.cairo": "func get_total_supply_encode_return(ret_struct : __main__.get_total_supply.Return, range_check_ptr) -> (\n range_check_ptr, data_len : felt, data : felt*):\n %{ memory[ap] = segments.add() %}\n alloc_locals\n local __return_value_ptr_start : felt*\n let __return_value_ptr = __return_value_ptr_start\n with range_check_ptr:\n end\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start)\nend\n", - "autogen/starknet/external/transfer/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo": "let ret_struct = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(recipient=__calldata_arg_recipient, amount=__calldata_arg_amount,)\n%{ memory[ap] = segments.add() %} # Allocate memory for return value.\ntempvar retdata : felt*\nlet retdata_size = 0\n", - "autogen/starknet/external/transfer/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo": "let ecdsa_ptr = [cast([fp + (-5)] + 3, felt*)]\n", - "autogen/starknet/external/transfer/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/transfer/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo": "let pedersen_ptr = [cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]\n", - "autogen/starknet/external/transfer/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo": "let range_check_ptr = [cast([fp + (-5)] + 2, felt*)]\n", - "autogen/starknet/external/transfer/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo": "let syscall_ptr = [cast([fp + (-5)] + 0, felt**)]\n", - "autogen/starknet/external/transfer_from/4a68d81f8f2bb31e3e12a7036b6823bb72d4eaa3b0e8f8858ab46e74ee3342c4.cairo": "let ret_struct = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(sender=__calldata_arg_sender, recipient=__calldata_arg_recipient, amount=__calldata_arg_amount,)\n%{ memory[ap] = segments.add() %} # Allocate memory for return value.\ntempvar retdata : felt*\nlet retdata_size = 0\n", - "autogen/starknet/external/transfer_from/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo": "let ecdsa_ptr = [cast([fp + (-5)] + 3, felt*)]\n", - "autogen/starknet/external/transfer_from/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata)\n", - "autogen/starknet/external/transfer_from/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo": "let pedersen_ptr = [cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]\n", - "autogen/starknet/external/transfer_from/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo": "let range_check_ptr = [cast([fp + (-5)] + 2, felt*)]\n", - "autogen/starknet/external/transfer_from/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo": "let syscall_ptr = [cast([fp + (-5)] + 0, felt**)]\n", - "autogen/starknet/storage_var/allowances/decl.cairo": "namespace allowances:\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr : HashBuiltin*, range_check_ptr}(owner : felt, spender : felt) -> (\n res : felt):\n let res = 0\n call hash2\n call normalize_address\n end\n\n func read{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(\n owner : felt, spender : felt) -> (res : felt):\n let storage_addr = 0\n call addr\n call storage_read\n end\n\n func write{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(\n owner : felt, spender : felt, value : felt):\n let storage_addr = 0\n call addr\n call storage_write\n end\nend", - "autogen/starknet/storage_var/allowances/impl.cairo": "namespace allowances:\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr : HashBuiltin*, range_check_ptr}(owner : felt, spender : felt) -> (\n res : felt):\n let res = 337994139936370667767799129369552596157394447336989834104582481799883947719\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, owner)\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, spender)\n let (res) = normalize_address(addr=res)\n return (res=res)\n end\n\n func read{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(\n owner : felt, spender : felt) -> (res : felt):\n let (storage_addr) = addr(owner, spender)\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0)\n\n tempvar syscall_ptr = syscall_ptr\n tempvar pedersen_ptr = pedersen_ptr\n tempvar range_check_ptr = range_check_ptr\n tempvar __storage_var_temp0 : felt = __storage_var_temp0\n return ([cast(&__storage_var_temp0, felt*)])\n end\n\n func write{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(\n owner : felt, spender : felt, value : felt):\n let (storage_addr) = addr(owner, spender)\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0])\n return ()\n end\nend", - "autogen/starknet/storage_var/balances/decl.cairo": "namespace balances:\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr : HashBuiltin*, range_check_ptr}(user : felt) -> (res : felt):\n let res = 0\n call hash2\n call normalize_address\n end\n\n func read{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(user : felt) -> (\n res : felt):\n let storage_addr = 0\n call addr\n call storage_read\n end\n\n func write{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(\n user : felt, value : felt):\n let storage_addr = 0\n call addr\n call storage_write\n end\nend", - "autogen/starknet/storage_var/balances/impl.cairo": "namespace balances:\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr : HashBuiltin*, range_check_ptr}(user : felt) -> (res : felt):\n let res = 1065622543624526936256554561967983185612257046533136611876836524258158810564\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, user)\n let (res) = normalize_address(addr=res)\n return (res=res)\n end\n\n func read{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(user : felt) -> (\n res : felt):\n let (storage_addr) = addr(user)\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0)\n\n tempvar syscall_ptr = syscall_ptr\n tempvar pedersen_ptr = pedersen_ptr\n tempvar range_check_ptr = range_check_ptr\n tempvar __storage_var_temp0 : felt = __storage_var_temp0\n return ([cast(&__storage_var_temp0, felt*)])\n end\n\n func write{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(\n user : felt, value : felt):\n let (storage_addr) = addr(user)\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0])\n return ()\n end\nend", - "autogen/starknet/storage_var/initialized/decl.cairo": "namespace initialized:\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let res = 0\n call hash2\n call normalize_address\n end\n\n func read{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let storage_addr = 0\n call addr\n call storage_read\n end\n\n func write{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(value : felt):\n let storage_addr = 0\n call addr\n call storage_write\n end\nend", - "autogen/starknet/storage_var/initialized/impl.cairo": "namespace initialized:\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let res = 1697461057326310581967816530165551571743938660869987744467005324703617544296\n return (res=res)\n end\n\n func read{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let (storage_addr) = addr()\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0)\n\n tempvar syscall_ptr = syscall_ptr\n tempvar pedersen_ptr = pedersen_ptr\n tempvar range_check_ptr = range_check_ptr\n tempvar __storage_var_temp0 : felt = __storage_var_temp0\n return ([cast(&__storage_var_temp0, felt*)])\n end\n\n func write{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(value : felt):\n let (storage_addr) = addr()\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0])\n return ()\n end\nend", - "autogen/starknet/storage_var/total_supply/decl.cairo": "namespace total_supply:\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let res = 0\n call hash2\n call normalize_address\n end\n\n func read{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let storage_addr = 0\n call addr\n call storage_read\n end\n\n func write{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(value : felt):\n let storage_addr = 0\n call addr\n call storage_write\n end\nend", - "autogen/starknet/storage_var/total_supply/impl.cairo": "namespace total_supply:\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let res = 603278275252936218847294002513349627170936020082667936993356353388973422646\n return (res=res)\n end\n\n func read{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}() -> (res : felt):\n let (storage_addr) = addr()\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0)\n\n tempvar syscall_ptr = syscall_ptr\n tempvar pedersen_ptr = pedersen_ptr\n tempvar range_check_ptr = range_check_ptr\n tempvar __storage_var_temp0 : felt = __storage_var_temp0\n return ([cast(&__storage_var_temp0, felt*)])\n end\n\n func write{syscall_ptr : felt*, pedersen_ptr : HashBuiltin*, range_check_ptr}(value : felt):\n let (storage_addr) = addr()\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0])\n return ()\n end\nend" - }, - "instruction_locations": { - "0": { - "accessible_scopes": ["starkware.cairo.common.hash", "starkware.cairo.common.hash.hash2"], - "flow_tracking_data": { - "ap_tracking": { - "group": 0, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.hash.hash2.hash_ptr": 2, - "starkware.cairo.common.hash.hash2.x": 0, - "starkware.cairo.common.hash.hash2.y": 1 - } - }, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 14, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 14 - } - }, - "1": { - "accessible_scopes": ["starkware.cairo.common.hash", "starkware.cairo.common.hash.hash2"], - "flow_tracking_data": { - "ap_tracking": { - "group": 0, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.hash.hash2.hash_ptr": 2, - "starkware.cairo.common.hash.hash2.x": 0, - "starkware.cairo.common.hash.hash2.y": 1 - } - }, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 15, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 15 - } - }, - "2": { - "accessible_scopes": ["starkware.cairo.common.hash", "starkware.cairo.common.hash.hash2"], - "flow_tracking_data": { - "ap_tracking": { - "group": 0, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.hash.hash2.hash_ptr": 4, - "starkware.cairo.common.hash.hash2.result": 3, - "starkware.cairo.common.hash.hash2.x": 0, - "starkware.cairo.common.hash.hash2.y": 1 - } - }, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 17, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 13, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'hash_ptr' in:" - ], - "start_col": 12, - "start_line": 13 - }, - "While expanding the reference 'hash_ptr' in:" - ], - "start_col": 20, - "start_line": 17 - } - }, - "4": { - "accessible_scopes": ["starkware.cairo.common.hash", "starkware.cairo.common.hash.hash2"], - "flow_tracking_data": { - "ap_tracking": { - "group": 0, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.hash.hash2.hash_ptr": 4, - "starkware.cairo.common.hash.hash2.result": 3, - "starkware.cairo.common.hash.hash2.x": 0, - "starkware.cairo.common.hash.hash2.y": 1 - } - }, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 16, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 18, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 20, - "start_line": 18 - }, - "While expanding the reference 'result' in:" - ], - "start_col": 18, - "start_line": 16 - } - }, - "5": { - "accessible_scopes": ["starkware.cairo.common.hash", "starkware.cairo.common.hash.hash2"], - "flow_tracking_data": { - "ap_tracking": { - "group": 0, - "offset": 2 - }, - "reference_ids": { - "starkware.cairo.common.hash.hash2.hash_ptr": 4, - "starkware.cairo.common.hash.hash2.result": 3, - "starkware.cairo.common.hash.hash2.x": 0, - "starkware.cairo.common.hash.hash2.y": 1 - } - }, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 18 - } - }, - "6": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 1, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_nn.a": 5, - "starkware.cairo.common.math.assert_nn.range_check_ptr": 6 - } - }, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 44, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 40 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 26, - "end_line": 45, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 45 - } - }, - "7": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 1, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_nn.a": 5, - "starkware.cairo.common.math.assert_nn.range_check_ptr": 7 - } - }, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 46, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 39, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 47, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 47 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 39 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 46 - } - }, - "9": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 1, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_nn.a": 5, - "starkware.cairo.common.math.assert_nn.range_check_ptr": 7 - } - }, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 47, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 47 - } - }, - "10": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_le.a": 8, - "starkware.cairo.common.math.assert_le.b": 9, - "starkware.cairo.common.math.assert_le.range_check_ptr": 10 - } - }, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 51, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 39, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 52, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 52 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 39 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 51 - } - }, - "11": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_le.a": 8, - "starkware.cairo.common.math.assert_le.b": 9, - "starkware.cairo.common.math.assert_le.range_check_ptr": 10 - } - }, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 52, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 15, - "start_line": 52 - } - }, - "12": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 2 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_le.a": 8, - "starkware.cairo.common.math.assert_le.b": 9, - "starkware.cairo.common.math.assert_le.range_check_ptr": 10 - } - }, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 52, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 52 - } - }, - "14": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 5 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_le.a": 8, - "starkware.cairo.common.math.assert_le.b": 9, - "starkware.cairo.common.math.assert_le.range_check_ptr": 11 - } - }, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 53, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 53 - } - }, - "15": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn_le" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 3, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_nn_le.a": 12, - "starkware.cairo.common.math.assert_nn_le.b": 13, - "starkware.cairo.common.math.assert_nn_le.range_check_ptr": 14 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 65, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 39, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 66, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 39 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 19, - "start_line": 65 - } - }, - "16": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn_le" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 3, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_nn_le.a": 12, - "starkware.cairo.common.math.assert_nn_le.b": 13, - "starkware.cairo.common.math.assert_nn_le.range_check_ptr": 14 - } - }, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 65, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 66, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 15, - "start_line": 66 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 36, - "start_line": 65 - } - }, - "17": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn_le" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 3, - "offset": 2 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_nn_le.a": 12, - "starkware.cairo.common.math.assert_nn_le.b": 13, - "starkware.cairo.common.math.assert_nn_le.range_check_ptr": 14 - } - }, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 66, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 66 - } - }, - "19": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn_le" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 3, - "offset": 5 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_nn_le.a": 12, - "starkware.cairo.common.math.assert_nn_le.b": 13, - "starkware.cairo.common.math.assert_nn_le.range_check_ptr": 15 - } - }, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 65, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 67, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 15, - "start_line": 67 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 36, - "start_line": 65 - } - }, - "20": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn_le" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 3, - "offset": 6 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_nn_le.a": 12, - "starkware.cairo.common.math.assert_nn_le.b": 13, - "starkware.cairo.common.math.assert_nn_le.range_check_ptr": 15 - } - }, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 65, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 67, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 18, - "start_line": 67 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 39, - "start_line": 65 - } - }, - "21": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn_le" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 3, - "offset": 7 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_nn_le.a": 12, - "starkware.cairo.common.math.assert_nn_le.b": 13, - "starkware.cairo.common.math.assert_nn_le.range_check_ptr": 15 - } - }, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 67, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 67 - } - }, - "23": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn_le" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 3, - "offset": 14 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_nn_le.a": 12, - "starkware.cairo.common.math.assert_nn_le.b": 13, - "starkware.cairo.common.math.assert_nn_le.range_check_ptr": 16 - } - }, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 68, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 68 - } - }, - "24": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_250_bit.high": 20, - "starkware.cairo.common.math.assert_250_bit.low": 19, - "starkware.cairo.common.math.assert_250_bit.range_check_ptr": 18, - "starkware.cairo.common.math.assert_250_bit.value": 17 - } - }, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 97, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 88 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 50, - "end_line": 99, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 36, - "start_line": 99 - } - }, - "26": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_250_bit.__temp0": 21, - "starkware.cairo.common.math.assert_250_bit.high": 20, - "starkware.cairo.common.math.assert_250_bit.low": 19, - "starkware.cairo.common.math.assert_250_bit.range_check_ptr": 18, - "starkware.cairo.common.math.assert_250_bit.value": 17 - } - }, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 86, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 99, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 53, - "start_line": 99 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 86 - } - }, - "27": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 2 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_250_bit.__temp0": 21, - "starkware.cairo.common.math.assert_250_bit.__temp1": 22, - "starkware.cairo.common.math.assert_250_bit.high": 20, - "starkware.cairo.common.math.assert_250_bit.low": 19, - "starkware.cairo.common.math.assert_250_bit.range_check_ptr": 18, - "starkware.cairo.common.math.assert_250_bit.value": 17 - } - }, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 99, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 36, - "start_line": 99 - } - }, - "28": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 3 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_250_bit.__temp0": 21, - "starkware.cairo.common.math.assert_250_bit.__temp1": 22, - "starkware.cairo.common.math.assert_250_bit.__temp2": 23, - "starkware.cairo.common.math.assert_250_bit.high": 20, - "starkware.cairo.common.math.assert_250_bit.low": 19, - "starkware.cairo.common.math.assert_250_bit.range_check_ptr": 18, - "starkware.cairo.common.math.assert_250_bit.value": 17 - } - }, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 99, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 99 - } - }, - "29": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 3 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_250_bit.__temp0": 21, - "starkware.cairo.common.math.assert_250_bit.__temp1": 22, - "starkware.cairo.common.math.assert_250_bit.__temp2": 23, - "starkware.cairo.common.math.assert_250_bit.high": 20, - "starkware.cairo.common.math.assert_250_bit.low": 19, - "starkware.cairo.common.math.assert_250_bit.range_check_ptr": 18, - "starkware.cairo.common.math.assert_250_bit.value": 17 - } - }, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 86, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 104, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 104 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 86 - } - }, - "30": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 4 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_250_bit.__temp0": 21, - "starkware.cairo.common.math.assert_250_bit.__temp1": 22, - "starkware.cairo.common.math.assert_250_bit.__temp2": 23, - "starkware.cairo.common.math.assert_250_bit.__temp3": 24, - "starkware.cairo.common.math.assert_250_bit.high": 20, - "starkware.cairo.common.math.assert_250_bit.low": 19, - "starkware.cairo.common.math.assert_250_bit.range_check_ptr": 18, - "starkware.cairo.common.math.assert_250_bit.value": 17 - } - }, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 104, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 104 - } - }, - "32": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 5 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_250_bit.__temp0": 21, - "starkware.cairo.common.math.assert_250_bit.__temp1": 22, - "starkware.cairo.common.math.assert_250_bit.__temp2": 23, - "starkware.cairo.common.math.assert_250_bit.__temp3": 24, - "starkware.cairo.common.math.assert_250_bit.__temp4": 25, - "starkware.cairo.common.math.assert_250_bit.high": 20, - "starkware.cairo.common.math.assert_250_bit.low": 19, - "starkware.cairo.common.math.assert_250_bit.range_check_ptr": 18, - "starkware.cairo.common.math.assert_250_bit.value": 17 - } - }, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 85, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 104, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 35, - "start_line": 104 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 15, - "start_line": 85 - } - }, - "33": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 6 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_250_bit.__temp0": 21, - "starkware.cairo.common.math.assert_250_bit.__temp1": 22, - "starkware.cairo.common.math.assert_250_bit.__temp2": 23, - "starkware.cairo.common.math.assert_250_bit.__temp3": 24, - "starkware.cairo.common.math.assert_250_bit.__temp4": 25, - "starkware.cairo.common.math.assert_250_bit.__temp5": 26, - "starkware.cairo.common.math.assert_250_bit.high": 20, - "starkware.cairo.common.math.assert_250_bit.low": 19, - "starkware.cairo.common.math.assert_250_bit.range_check_ptr": 18, - "starkware.cairo.common.math.assert_250_bit.value": 17 - } - }, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 104, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 104 - } - }, - "34": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 6 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_250_bit.__temp0": 21, - "starkware.cairo.common.math.assert_250_bit.__temp1": 22, - "starkware.cairo.common.math.assert_250_bit.__temp2": 23, - "starkware.cairo.common.math.assert_250_bit.__temp3": 24, - "starkware.cairo.common.math.assert_250_bit.__temp4": 25, - "starkware.cairo.common.math.assert_250_bit.__temp5": 26, - "starkware.cairo.common.math.assert_250_bit.high": 20, - "starkware.cairo.common.math.assert_250_bit.low": 19, - "starkware.cairo.common.math.assert_250_bit.range_check_ptr": 27, - "starkware.cairo.common.math.assert_250_bit.value": 17 - } - }, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 106, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 80, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 107, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 107 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 80 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 106 - } - }, - "36": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 7 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_250_bit.__temp0": 21, - "starkware.cairo.common.math.assert_250_bit.__temp1": 22, - "starkware.cairo.common.math.assert_250_bit.__temp2": 23, - "starkware.cairo.common.math.assert_250_bit.__temp3": 24, - "starkware.cairo.common.math.assert_250_bit.__temp4": 25, - "starkware.cairo.common.math.assert_250_bit.__temp5": 26, - "starkware.cairo.common.math.assert_250_bit.high": 20, - "starkware.cairo.common.math.assert_250_bit.low": 19, - "starkware.cairo.common.math.assert_250_bit.range_check_ptr": 27, - "starkware.cairo.common.math.assert_250_bit.value": 17 - } - }, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 107, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 107 - } - }, - "37": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 0 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29 - } - }, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 13, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 5, - "start_line": 13 - } - }, - "39": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29 - } - }, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 21, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 5, - "start_line": 14 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 7, - "end_line": 22, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "41": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29, - "starkware.starknet.common.storage.normalize_address.x": 31, - "starkware.starknet.common.storage.normalize_address.y": 32 - } - }, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 80, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 50, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 50 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 80 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "42": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 2 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29, - "starkware.starknet.common.storage.normalize_address.x": 31, - "starkware.starknet.common.storage.normalize_address.y": 32 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 48, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 50, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 24, - "start_line": 50 - }, - "While expanding the reference 'x' in:" - ], - "start_col": 17, - "start_line": 48 - } - }, - "44": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 3 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29, - "starkware.starknet.common.storage.normalize_address.x": 31, - "starkware.starknet.common.storage.normalize_address.y": 32 - } - }, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 50, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 50 - } - }, - "46": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 12 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 33, - "starkware.starknet.common.storage.normalize_address.x": 31, - "starkware.starknet.common.storage.normalize_address.y": 32 - } - }, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 49, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 24, - "start_line": 51 - }, - "While expanding the reference 'y' in:" - ], - "start_col": 18, - "start_line": 49 - } - }, - "48": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 13 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.__temp6": 34, - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 33, - "starkware.starknet.common.storage.normalize_address.x": 31, - "starkware.starknet.common.storage.normalize_address.y": 32 - } - }, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 80, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 50, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 80, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 51, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 51 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 80 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 50 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 80 - } - }, - "49": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 14 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.__temp6": 34, - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 33, - "starkware.starknet.common.storage.normalize_address.x": 31, - "starkware.starknet.common.storage.normalize_address.y": 32 - } - }, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 49, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 24, - "start_line": 51 - }, - "While expanding the reference 'y' in:" - ], - "start_col": 17, - "start_line": 49 - } - }, - "50": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 15 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.__temp6": 34, - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 33, - "starkware.starknet.common.storage.normalize_address.x": 31, - "starkware.starknet.common.storage.normalize_address.y": 32 - } - }, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 51, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 51 - } - }, - "52": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 24 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.__temp6": 34, - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 35, - "starkware.starknet.common.storage.normalize_address.x": 31, - "starkware.starknet.common.storage.normalize_address.y": 32 - } - }, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 52, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 21, - "start_line": 52 - } - }, - "54": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 25 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.__temp6": 34, - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 35, - "starkware.starknet.common.storage.normalize_address.x": 31, - "starkware.starknet.common.storage.normalize_address.y": 32 - } - }, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 52, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 52 - } - }, - "55": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29 - } - }, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 23, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 23 - } - }, - "57": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 2 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_250": 36, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29 - } - }, - "hints": [ - { - "location": { - "end_col": 57, - "end_line": 24, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 24 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 11, - "end_line": 25, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "59": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 2 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_250": 36, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29 - } - }, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 30, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 30 - } - }, - "61": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 12 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_250": 36, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29 - } - }, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 32, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 28, - "start_line": 32 - } - }, - "63": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 13 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.__temp7": 37, - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_250": 36, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29 - } - }, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 80, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 32, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 80 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "64": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 14 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.__temp7": 37, - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_250": 36, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29 - } - }, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 32, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 28, - "start_line": 32 - } - }, - "65": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 15 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.__temp7": 37, - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_250": 36, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29 - } - }, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 32, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 32 - } - }, - "67": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 24 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.__temp7": 37, - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_250": 36, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 38 - } - }, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 25, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "69": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 2 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_250": 36, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29 - } - }, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 26, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 26 - } - }, - "71": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 13 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_250": 36, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29 - } - }, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 80, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 28, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 80 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "72": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 14 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_250": 36, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29 - } - }, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 28, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 28, - "start_line": 28 - }, - "While expanding the reference 'addr' in:" - ], - "start_col": 41, - "start_line": 12 - } - }, - "73": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 15 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_250": 36, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29 - } - }, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 28, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 28 - } - }, - "75": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 24 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_250": 36, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 40 - } - }, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 34, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 21, - "start_line": 34 - }, - "While expanding the reference 'addr' in:" - ], - "start_col": 41, - "start_line": 12 - } - }, - "76": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 25 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_250": 36, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 40 - } - }, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 34, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 34 - } - }, - "77": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 6, - "offset": 0 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_caller_address.syscall": 42, - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": 41 - } - }, - "hints": [], - "inst": { - "end_col": 90, - "end_line": 95, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 63, - "start_line": 95 - } - }, - "79": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 6, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_caller_address.__temp8": 43, - "starkware.starknet.common.syscalls.get_caller_address.syscall": 42, - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": 41 - } - }, - "hints": [], - "inst": { - "end_col": 91, - "end_line": 95, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 95 - } - }, - "80": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 6, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_caller_address.__temp8": 43, - "starkware.starknet.common.syscalls.get_caller_address.syscall": 42, - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": 44 - } - }, - "hints": [ - { - "location": { - "end_col": 93, - "end_line": 96, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 96 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 58, - "end_line": 97, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 93, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 98, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 98 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 93 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 97 - } - }, - "82": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 6, - "offset": 2 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_caller_address.__temp8": 43, - "starkware.starknet.common.syscalls.get_caller_address.syscall": 42, - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": 44 - } - }, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 98, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 28, - "start_line": 98 - } - }, - "83": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 6, - "offset": 3 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_caller_address.__temp8": 43, - "starkware.starknet.common.syscalls.get_caller_address.syscall": 42, - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": 44 - } - }, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 98, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 98 - } - }, - "84": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 7, - "offset": 0 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_read.address": 45, - "starkware.starknet.common.syscalls.storage_read.syscall": 47, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 46 - } - }, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 201, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 58, - "start_line": 201 - } - }, - "86": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 7, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_read.__temp9": 48, - "starkware.starknet.common.syscalls.storage_read.address": 45, - "starkware.starknet.common.syscalls.storage_read.syscall": 47, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 46 - } - }, - "hints": [], - "inst": { - "end_col": 97, - "end_line": 201, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 201 - } - }, - "87": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 7, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_read.__temp9": 48, - "starkware.starknet.common.syscalls.storage_read.address": 45, - "starkware.starknet.common.syscalls.storage_read.syscall": 47, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 46 - } - }, - "hints": [], - "inst": { - "end_col": 97, - "end_line": 201, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 201 - } - }, - "88": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 7, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_read.__temp9": 48, - "starkware.starknet.common.syscalls.storage_read.address": 45, - "starkware.starknet.common.syscalls.storage_read.response": 49, - "starkware.starknet.common.syscalls.storage_read.syscall": 47, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 50 - } - }, - "hints": [ - { - "location": { - "end_col": 87, - "end_line": 202, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 202 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 53, - "end_line": 204, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 199, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 205, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 205 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 199 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 204 - } - }, - "90": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 7, - "offset": 2 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_read.__temp9": 48, - "starkware.starknet.common.syscalls.storage_read.address": 45, - "starkware.starknet.common.syscalls.storage_read.response": 49, - "starkware.starknet.common.syscalls.storage_read.syscall": 47, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 50 - } - }, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 205, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 19, - "start_line": 205 - } - }, - "91": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 7, - "offset": 3 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_read.__temp9": 48, - "starkware.starknet.common.syscalls.storage_read.address": 45, - "starkware.starknet.common.syscalls.storage_read.response": 49, - "starkware.starknet.common.syscalls.storage_read.syscall": 47, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 50 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 205, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 205 - } - }, - "92": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 8, - "offset": 0 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_write.address": 51, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 53, - "starkware.starknet.common.syscalls.storage_write.value": 52 - } - }, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 219, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 18, - "start_line": 219 - } - }, - "94": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 8, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_write.__temp10": 54, - "starkware.starknet.common.syscalls.storage_write.address": 51, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 53, - "starkware.starknet.common.syscalls.storage_write.value": 52 - } - }, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 219, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 218 - } - }, - "95": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 8, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_write.__temp10": 54, - "starkware.starknet.common.syscalls.storage_write.address": 51, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 53, - "starkware.starknet.common.syscalls.storage_write.value": 52 - } - }, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 219, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 218 - } - }, - "96": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 8, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_write.__temp10": 54, - "starkware.starknet.common.syscalls.storage_write.address": 51, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 53, - "starkware.starknet.common.syscalls.storage_write.value": 52 - } - }, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 219, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 218 - } - }, - "97": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 8, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_write.__temp10": 54, - "starkware.starknet.common.syscalls.storage_write.address": 51, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 55, - "starkware.starknet.common.syscalls.storage_write.value": 52 - } - }, - "hints": [ - { - "location": { - "end_col": 88, - "end_line": 220, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 220 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 54, - "end_line": 221, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 217, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 222, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 222 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 217 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 221 - } - }, - "99": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 8, - "offset": 2 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_write.__temp10": 54, - "starkware.starknet.common.syscalls.storage_write.address": 51, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 55, - "starkware.starknet.common.syscalls.storage_write.value": 52 - } - }, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 222, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 222 - } - }, - "100": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 0 - }, - "reference_ids": { - "__main__.balances.addr.pedersen_ptr": 57, - "__main__.balances.addr.range_check_ptr": 58, - "__main__.balances.addr.res": 59, - "__main__.balances.addr.user": 56 - } - }, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 36, - "start_line": 9 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "101": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 1 - }, - "reference_ids": { - "__main__.balances.addr.pedersen_ptr": 57, - "__main__.balances.addr.range_check_ptr": 58, - "__main__.balances.addr.res": 59, - "__main__.balances.addr.user": 56 - } - }, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 50, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "103": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 2 - }, - "reference_ids": { - "__main__.balances.addr.pedersen_ptr": 57, - "__main__.balances.addr.range_check_ptr": 58, - "__main__.balances.addr.res": 59, - "__main__.balances.addr.user": 56 - } - }, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 55, - "start_line": 9 - }, - "While expanding the reference 'user' in:" - ], - "start_col": 61, - "start_line": 7 - } - }, - "104": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 3 - }, - "reference_ids": { - "__main__.balances.addr.pedersen_ptr": 57, - "__main__.balances.addr.range_check_ptr": 58, - "__main__.balances.addr.res": 59, - "__main__.balances.addr.user": 56 - } - }, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - } - }, - "106": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 7 - }, - "reference_ids": { - "__main__.balances.addr.pedersen_ptr": 60, - "__main__.balances.addr.range_check_ptr": 58, - "__main__.balances.addr.res": 61, - "__main__.balances.addr.user": 56 - } - }, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "107": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 8 - }, - "reference_ids": { - "__main__.balances.addr.pedersen_ptr": 60, - "__main__.balances.addr.range_check_ptr": 58, - "__main__.balances.addr.res": 61, - "__main__.balances.addr.user": 56 - } - }, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 44, - "start_line": 10 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 9 - } - }, - "108": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 9 - }, - "reference_ids": { - "__main__.balances.addr.pedersen_ptr": 60, - "__main__.balances.addr.range_check_ptr": 58, - "__main__.balances.addr.res": 61, - "__main__.balances.addr.user": 56 - } - }, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - } - }, - "110": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 36 - }, - "reference_ids": { - "__main__.balances.addr.pedersen_ptr": 60, - "__main__.balances.addr.range_check_ptr": 62, - "__main__.balances.addr.res": 63, - "__main__.balances.addr.user": 56 - } - }, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 9 - } - }, - "111": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 37 - }, - "reference_ids": { - "__main__.balances.addr.pedersen_ptr": 60, - "__main__.balances.addr.range_check_ptr": 62, - "__main__.balances.addr.res": 63, - "__main__.balances.addr.user": 56 - } - }, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 10 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "112": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 38 - }, - "reference_ids": { - "__main__.balances.addr.pedersen_ptr": 60, - "__main__.balances.addr.range_check_ptr": 62, - "__main__.balances.addr.res": 63, - "__main__.balances.addr.user": 56 - } - }, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 10 - } - }, - "113": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 39 - }, - "reference_ids": { - "__main__.balances.addr.pedersen_ptr": 60, - "__main__.balances.addr.range_check_ptr": 62, - "__main__.balances.addr.res": 63, - "__main__.balances.addr.user": 56 - } - }, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - } - }, - "114": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 10, - "offset": 0 - }, - "reference_ids": { - "__main__.balances.read.pedersen_ptr": 66, - "__main__.balances.read.range_check_ptr": 67, - "__main__.balances.read.syscall_ptr": 65, - "__main__.balances.read.user": 64 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 30, - "start_line": 16 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 14 - } - }, - "115": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 10, - "offset": 1 - }, - "reference_ids": { - "__main__.balances.read.pedersen_ptr": 66, - "__main__.balances.read.range_check_ptr": 67, - "__main__.balances.read.syscall_ptr": 65, - "__main__.balances.read.user": 64 - } - }, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 30, - "start_line": 16 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 14 - } - }, - "116": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 10, - "offset": 2 - }, - "reference_ids": { - "__main__.balances.read.pedersen_ptr": 66, - "__main__.balances.read.range_check_ptr": 67, - "__main__.balances.read.syscall_ptr": 65, - "__main__.balances.read.user": 64 - } - }, - "hints": [], - "inst": { - "end_col": 93, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 35, - "start_line": 16 - }, - "While expanding the reference 'user' in:" - ], - "start_col": 82, - "start_line": 14 - } - }, - "117": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 10, - "offset": 3 - }, - "reference_ids": { - "__main__.balances.read.pedersen_ptr": 66, - "__main__.balances.read.range_check_ptr": 67, - "__main__.balances.read.syscall_ptr": 65, - "__main__.balances.read.user": 64 - } - }, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 30, - "start_line": 16 - } - }, - "119": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 10, - "offset": 44 - }, - "reference_ids": { - "__main__.balances.read.pedersen_ptr": 68, - "__main__.balances.read.range_check_ptr": 69, - "__main__.balances.read.storage_addr": 70, - "__main__.balances.read.syscall_ptr": 65, - "__main__.balances.read.user": 64 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 199, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 37, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 199 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 14 - } - }, - "120": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 10, - "offset": 45 - }, - "reference_ids": { - "__main__.balances.read.pedersen_ptr": 68, - "__main__.balances.read.range_check_ptr": 69, - "__main__.balances.read.storage_addr": 70, - "__main__.balances.read.syscall_ptr": 65, - "__main__.balances.read.user": 64 - } - }, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 58, - "start_line": 17 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 16 - } - }, - "121": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 10, - "offset": 46 - }, - "reference_ids": { - "__main__.balances.read.pedersen_ptr": 68, - "__main__.balances.read.range_check_ptr": 69, - "__main__.balances.read.storage_addr": 70, - "__main__.balances.read.syscall_ptr": 65, - "__main__.balances.read.user": 64 - } - }, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 37, - "start_line": 17 - } - }, - "123": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 10, - "offset": 51 - }, - "reference_ids": { - "__main__.balances.read.__storage_var_temp0": 72, - "__main__.balances.read.pedersen_ptr": 68, - "__main__.balances.read.range_check_ptr": 69, - "__main__.balances.read.storage_addr": 70, - "__main__.balances.read.syscall_ptr": 71, - "__main__.balances.read.user": 64 - } - }, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 199, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 31, - "start_line": 19 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 17 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 199 - } - }, - "124": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 10, - "offset": 52 - }, - "reference_ids": { - "__main__.balances.read.__storage_var_temp0": 72, - "__main__.balances.read.pedersen_ptr": 68, - "__main__.balances.read.range_check_ptr": 69, - "__main__.balances.read.storage_addr": 70, - "__main__.balances.read.syscall_ptr": 73, - "__main__.balances.read.user": 64 - } - }, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 32, - "start_line": 20 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 16 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "125": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 10, - "offset": 53 - }, - "reference_ids": { - "__main__.balances.read.__storage_var_temp0": 72, - "__main__.balances.read.pedersen_ptr": 74, - "__main__.balances.read.range_check_ptr": 69, - "__main__.balances.read.storage_addr": 70, - "__main__.balances.read.syscall_ptr": 73, - "__main__.balances.read.user": 64 - } - }, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 35, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 16 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "126": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 10, - "offset": 54 - }, - "reference_ids": { - "__main__.balances.read.__storage_var_temp0": 72, - "__main__.balances.read.pedersen_ptr": 74, - "__main__.balances.read.range_check_ptr": 75, - "__main__.balances.read.storage_addr": 70, - "__main__.balances.read.syscall_ptr": 73, - "__main__.balances.read.user": 64 - } - }, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 46, - "start_line": 22 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 17 - } - }, - "127": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 10, - "offset": 55 - }, - "reference_ids": { - "__main__.balances.read.__storage_var_temp0": 76, - "__main__.balances.read.pedersen_ptr": 74, - "__main__.balances.read.range_check_ptr": 75, - "__main__.balances.read.storage_addr": 70, - "__main__.balances.read.syscall_ptr": 73, - "__main__.balances.read.user": 64 - } - }, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 9, - "start_line": 23 - } - }, - "128": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 0 - }, - "reference_ids": { - "__main__.balances.write.pedersen_ptr": 80, - "__main__.balances.write.range_check_ptr": 81, - "__main__.balances.write.syscall_ptr": 79, - "__main__.balances.write.user": 77, - "__main__.balances.write.value": 78 - } - }, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 30, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 26 - } - }, - "129": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 1 - }, - "reference_ids": { - "__main__.balances.write.pedersen_ptr": 80, - "__main__.balances.write.range_check_ptr": 81, - "__main__.balances.write.syscall_ptr": 79, - "__main__.balances.write.user": 77, - "__main__.balances.write.value": 78 - } - }, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 30, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 26 - } - }, - "130": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 2 - }, - "reference_ids": { - "__main__.balances.write.pedersen_ptr": 80, - "__main__.balances.write.range_check_ptr": 81, - "__main__.balances.write.syscall_ptr": 79, - "__main__.balances.write.user": 77, - "__main__.balances.write.value": 78 - } - }, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 35, - "start_line": 28 - }, - "While expanding the reference 'user' in:" - ], - "start_col": 13, - "start_line": 27 - } - }, - "131": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 3 - }, - "reference_ids": { - "__main__.balances.write.pedersen_ptr": 80, - "__main__.balances.write.range_check_ptr": 81, - "__main__.balances.write.syscall_ptr": 79, - "__main__.balances.write.user": 77, - "__main__.balances.write.value": 78 - } - }, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 30, - "start_line": 28 - } - }, - "133": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 44 - }, - "reference_ids": { - "__main__.balances.write.pedersen_ptr": 82, - "__main__.balances.write.range_check_ptr": 83, - "__main__.balances.write.storage_addr": 84, - "__main__.balances.write.syscall_ptr": 79, - "__main__.balances.write.user": 77, - "__main__.balances.write.value": 78 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 217, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 9, - "start_line": 29 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 217 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 26 - } - }, - "134": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 45 - }, - "reference_ids": { - "__main__.balances.write.pedersen_ptr": 82, - "__main__.balances.write.range_check_ptr": 83, - "__main__.balances.write.storage_addr": 84, - "__main__.balances.write.syscall_ptr": 79, - "__main__.balances.write.user": 77, - "__main__.balances.write.value": 78 - } - }, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 31, - "start_line": 29 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 28 - } - }, - "135": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 46 - }, - "reference_ids": { - "__main__.balances.write.pedersen_ptr": 82, - "__main__.balances.write.range_check_ptr": 83, - "__main__.balances.write.storage_addr": 84, - "__main__.balances.write.syscall_ptr": 79, - "__main__.balances.write.user": 77, - "__main__.balances.write.value": 78 - } - }, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 55, - "start_line": 29 - } - }, - "136": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 47 - }, - "reference_ids": { - "__main__.balances.write.pedersen_ptr": 82, - "__main__.balances.write.range_check_ptr": 83, - "__main__.balances.write.storage_addr": 84, - "__main__.balances.write.syscall_ptr": 79, - "__main__.balances.write.user": 77, - "__main__.balances.write.value": 78 - } - }, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 9, - "start_line": 29 - } - }, - "138": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 51 - }, - "reference_ids": { - "__main__.balances.write.pedersen_ptr": 82, - "__main__.balances.write.range_check_ptr": 83, - "__main__.balances.write.storage_addr": 84, - "__main__.balances.write.syscall_ptr": 85, - "__main__.balances.write.user": 77, - "__main__.balances.write.value": 78 - } - }, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 9, - "start_line": 30 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 20 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 28 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "139": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 52 - }, - "reference_ids": { - "__main__.balances.write.pedersen_ptr": 82, - "__main__.balances.write.range_check_ptr": 83, - "__main__.balances.write.storage_addr": 84, - "__main__.balances.write.syscall_ptr": 85, - "__main__.balances.write.user": 77, - "__main__.balances.write.value": 78 - } - }, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 9, - "start_line": 30 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 20 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 28 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "140": { - "accessible_scopes": ["__main__", "__main__.balances", "__main__.balances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 53 - }, - "reference_ids": { - "__main__.balances.write.pedersen_ptr": 82, - "__main__.balances.write.range_check_ptr": 83, - "__main__.balances.write.storage_addr": 84, - "__main__.balances.write.syscall_ptr": 85, - "__main__.balances.write.user": 77, - "__main__.balances.write.value": 78 - } - }, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/impl.cairo" - }, - "start_col": 9, - "start_line": 30 - } - }, - "141": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 0 - }, - "reference_ids": { - "__main__.allowances.addr.owner": 86, - "__main__.allowances.addr.pedersen_ptr": 88, - "__main__.allowances.addr.range_check_ptr": 89, - "__main__.allowances.addr.res": 90, - "__main__.allowances.addr.spender": 87 - } - }, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 36, - "start_line": 10 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "142": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 1 - }, - "reference_ids": { - "__main__.allowances.addr.owner": 86, - "__main__.allowances.addr.pedersen_ptr": 88, - "__main__.allowances.addr.range_check_ptr": 89, - "__main__.allowances.addr.res": 90, - "__main__.allowances.addr.spender": 87 - } - }, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 50, - "start_line": 10 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 9 - } - }, - "144": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 2 - }, - "reference_ids": { - "__main__.allowances.addr.owner": 86, - "__main__.allowances.addr.pedersen_ptr": 88, - "__main__.allowances.addr.range_check_ptr": 89, - "__main__.allowances.addr.res": 90, - "__main__.allowances.addr.spender": 87 - } - }, - "hints": [], - "inst": { - "end_col": 73, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 55, - "start_line": 10 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 61, - "start_line": 7 - } - }, - "145": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 3 - }, - "reference_ids": { - "__main__.allowances.addr.owner": 86, - "__main__.allowances.addr.pedersen_ptr": 88, - "__main__.allowances.addr.range_check_ptr": 89, - "__main__.allowances.addr.res": 90, - "__main__.allowances.addr.spender": 87 - } - }, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - } - }, - "147": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 7 - }, - "reference_ids": { - "__main__.allowances.addr.owner": 86, - "__main__.allowances.addr.pedersen_ptr": 91, - "__main__.allowances.addr.range_check_ptr": 89, - "__main__.allowances.addr.res": 92, - "__main__.allowances.addr.spender": 87 - } - }, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 55, - "start_line": 11 - }, - "While expanding the reference 'spender' in:" - ], - "start_col": 75, - "start_line": 7 - } - }, - "148": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 8 - }, - "reference_ids": { - "__main__.allowances.addr.owner": 86, - "__main__.allowances.addr.pedersen_ptr": 91, - "__main__.allowances.addr.range_check_ptr": 89, - "__main__.allowances.addr.res": 92, - "__main__.allowances.addr.spender": 87 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - } - }, - "150": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 12 - }, - "reference_ids": { - "__main__.allowances.addr.owner": 86, - "__main__.allowances.addr.pedersen_ptr": 93, - "__main__.allowances.addr.range_check_ptr": 89, - "__main__.allowances.addr.res": 94, - "__main__.allowances.addr.spender": 87 - } - }, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 21, - "start_line": 12 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "151": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 13 - }, - "reference_ids": { - "__main__.allowances.addr.owner": 86, - "__main__.allowances.addr.pedersen_ptr": 93, - "__main__.allowances.addr.range_check_ptr": 89, - "__main__.allowances.addr.res": 94, - "__main__.allowances.addr.spender": 87 - } - }, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 44, - "start_line": 12 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 11 - } - }, - "152": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 14 - }, - "reference_ids": { - "__main__.allowances.addr.owner": 86, - "__main__.allowances.addr.pedersen_ptr": 93, - "__main__.allowances.addr.range_check_ptr": 89, - "__main__.allowances.addr.res": 94, - "__main__.allowances.addr.spender": 87 - } - }, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 21, - "start_line": 12 - } - }, - "154": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 41 - }, - "reference_ids": { - "__main__.allowances.addr.owner": 86, - "__main__.allowances.addr.pedersen_ptr": 93, - "__main__.allowances.addr.range_check_ptr": 95, - "__main__.allowances.addr.res": 96, - "__main__.allowances.addr.spender": 87 - } - }, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 9, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 11 - } - }, - "155": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 42 - }, - "reference_ids": { - "__main__.allowances.addr.owner": 86, - "__main__.allowances.addr.pedersen_ptr": 93, - "__main__.allowances.addr.range_check_ptr": 95, - "__main__.allowances.addr.res": 96, - "__main__.allowances.addr.spender": 87 - } - }, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 9, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 12 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "156": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 43 - }, - "reference_ids": { - "__main__.allowances.addr.owner": 86, - "__main__.allowances.addr.pedersen_ptr": 93, - "__main__.allowances.addr.range_check_ptr": 95, - "__main__.allowances.addr.res": 96, - "__main__.allowances.addr.spender": 87 - } - }, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 21, - "start_line": 13 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 12 - } - }, - "157": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 44 - }, - "reference_ids": { - "__main__.allowances.addr.owner": 86, - "__main__.allowances.addr.pedersen_ptr": 93, - "__main__.allowances.addr.range_check_ptr": 95, - "__main__.allowances.addr.res": 96, - "__main__.allowances.addr.spender": 87 - } - }, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 9, - "start_line": 13 - } - }, - "158": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 0 - }, - "reference_ids": { - "__main__.allowances.read.owner": 97, - "__main__.allowances.read.pedersen_ptr": 100, - "__main__.allowances.read.range_check_ptr": 101, - "__main__.allowances.read.spender": 98, - "__main__.allowances.read.syscall_ptr": 99 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 16 - } - }, - "159": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 1 - }, - "reference_ids": { - "__main__.allowances.read.owner": 97, - "__main__.allowances.read.pedersen_ptr": 100, - "__main__.allowances.read.range_check_ptr": 101, - "__main__.allowances.read.spender": 98, - "__main__.allowances.read.syscall_ptr": 99 - } - }, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 16 - } - }, - "160": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 2 - }, - "reference_ids": { - "__main__.allowances.read.owner": 97, - "__main__.allowances.read.pedersen_ptr": 100, - "__main__.allowances.read.range_check_ptr": 101, - "__main__.allowances.read.spender": 98, - "__main__.allowances.read.syscall_ptr": 99 - } - }, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 13, - "start_line": 17 - } - }, - "161": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 3 - }, - "reference_ids": { - "__main__.allowances.read.owner": 97, - "__main__.allowances.read.pedersen_ptr": 100, - "__main__.allowances.read.range_check_ptr": 101, - "__main__.allowances.read.spender": 98, - "__main__.allowances.read.syscall_ptr": 99 - } - }, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 42, - "start_line": 18 - }, - "While expanding the reference 'spender' in:" - ], - "start_col": 27, - "start_line": 17 - } - }, - "162": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 4 - }, - "reference_ids": { - "__main__.allowances.read.owner": 97, - "__main__.allowances.read.pedersen_ptr": 100, - "__main__.allowances.read.range_check_ptr": 101, - "__main__.allowances.read.spender": 98, - "__main__.allowances.read.syscall_ptr": 99 - } - }, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - } - }, - "164": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 50 - }, - "reference_ids": { - "__main__.allowances.read.owner": 97, - "__main__.allowances.read.pedersen_ptr": 102, - "__main__.allowances.read.range_check_ptr": 103, - "__main__.allowances.read.spender": 98, - "__main__.allowances.read.storage_addr": 104, - "__main__.allowances.read.syscall_ptr": 99 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 199, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 199 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 16 - } - }, - "165": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 51 - }, - "reference_ids": { - "__main__.allowances.read.owner": 97, - "__main__.allowances.read.pedersen_ptr": 102, - "__main__.allowances.read.range_check_ptr": 103, - "__main__.allowances.read.spender": 98, - "__main__.allowances.read.storage_addr": 104, - "__main__.allowances.read.syscall_ptr": 99 - } - }, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 58, - "start_line": 19 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 18 - } - }, - "166": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 52 - }, - "reference_ids": { - "__main__.allowances.read.owner": 97, - "__main__.allowances.read.pedersen_ptr": 102, - "__main__.allowances.read.range_check_ptr": 103, - "__main__.allowances.read.spender": 98, - "__main__.allowances.read.storage_addr": 104, - "__main__.allowances.read.syscall_ptr": 99 - } - }, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - } - }, - "168": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 57 - }, - "reference_ids": { - "__main__.allowances.read.__storage_var_temp0": 106, - "__main__.allowances.read.owner": 97, - "__main__.allowances.read.pedersen_ptr": 102, - "__main__.allowances.read.range_check_ptr": 103, - "__main__.allowances.read.spender": 98, - "__main__.allowances.read.storage_addr": 104, - "__main__.allowances.read.syscall_ptr": 105 - } - }, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 199, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 31, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 199 - } - }, - "169": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 58 - }, - "reference_ids": { - "__main__.allowances.read.__storage_var_temp0": 106, - "__main__.allowances.read.owner": 97, - "__main__.allowances.read.pedersen_ptr": 102, - "__main__.allowances.read.range_check_ptr": 103, - "__main__.allowances.read.spender": 98, - "__main__.allowances.read.storage_addr": 104, - "__main__.allowances.read.syscall_ptr": 107 - } - }, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 32, - "start_line": 22 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 18 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "170": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 59 - }, - "reference_ids": { - "__main__.allowances.read.__storage_var_temp0": 106, - "__main__.allowances.read.owner": 97, - "__main__.allowances.read.pedersen_ptr": 108, - "__main__.allowances.read.range_check_ptr": 103, - "__main__.allowances.read.spender": 98, - "__main__.allowances.read.storage_addr": 104, - "__main__.allowances.read.syscall_ptr": 107 - } - }, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 35, - "start_line": 23 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 18 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "171": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 60 - }, - "reference_ids": { - "__main__.allowances.read.__storage_var_temp0": 106, - "__main__.allowances.read.owner": 97, - "__main__.allowances.read.pedersen_ptr": 108, - "__main__.allowances.read.range_check_ptr": 109, - "__main__.allowances.read.spender": 98, - "__main__.allowances.read.storage_addr": 104, - "__main__.allowances.read.syscall_ptr": 107 - } - }, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 46, - "start_line": 24 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 19 - } - }, - "172": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 61 - }, - "reference_ids": { - "__main__.allowances.read.__storage_var_temp0": 110, - "__main__.allowances.read.owner": 97, - "__main__.allowances.read.pedersen_ptr": 108, - "__main__.allowances.read.range_check_ptr": 109, - "__main__.allowances.read.spender": 98, - "__main__.allowances.read.storage_addr": 104, - "__main__.allowances.read.syscall_ptr": 107 - } - }, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "173": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 0 - }, - "reference_ids": { - "__main__.allowances.write.owner": 111, - "__main__.allowances.write.pedersen_ptr": 115, - "__main__.allowances.write.range_check_ptr": 116, - "__main__.allowances.write.spender": 112, - "__main__.allowances.write.syscall_ptr": 114, - "__main__.allowances.write.value": 113 - } - }, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 30, - "start_line": 30 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 28 - } - }, - "174": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 1 - }, - "reference_ids": { - "__main__.allowances.write.owner": 111, - "__main__.allowances.write.pedersen_ptr": 115, - "__main__.allowances.write.range_check_ptr": 116, - "__main__.allowances.write.spender": 112, - "__main__.allowances.write.syscall_ptr": 114, - "__main__.allowances.write.value": 113 - } - }, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 30, - "start_line": 30 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 28 - } - }, - "175": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 2 - }, - "reference_ids": { - "__main__.allowances.write.owner": 111, - "__main__.allowances.write.pedersen_ptr": 115, - "__main__.allowances.write.range_check_ptr": 116, - "__main__.allowances.write.spender": 112, - "__main__.allowances.write.syscall_ptr": 114, - "__main__.allowances.write.value": 113 - } - }, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 35, - "start_line": 30 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 13, - "start_line": 29 - } - }, - "176": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 3 - }, - "reference_ids": { - "__main__.allowances.write.owner": 111, - "__main__.allowances.write.pedersen_ptr": 115, - "__main__.allowances.write.range_check_ptr": 116, - "__main__.allowances.write.spender": 112, - "__main__.allowances.write.syscall_ptr": 114, - "__main__.allowances.write.value": 113 - } - }, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 42, - "start_line": 30 - }, - "While expanding the reference 'spender' in:" - ], - "start_col": 27, - "start_line": 29 - } - }, - "177": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 4 - }, - "reference_ids": { - "__main__.allowances.write.owner": 111, - "__main__.allowances.write.pedersen_ptr": 115, - "__main__.allowances.write.range_check_ptr": 116, - "__main__.allowances.write.spender": 112, - "__main__.allowances.write.syscall_ptr": 114, - "__main__.allowances.write.value": 113 - } - }, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 30, - "start_line": 30 - } - }, - "179": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 50 - }, - "reference_ids": { - "__main__.allowances.write.owner": 111, - "__main__.allowances.write.pedersen_ptr": 117, - "__main__.allowances.write.range_check_ptr": 118, - "__main__.allowances.write.spender": 112, - "__main__.allowances.write.storage_addr": 119, - "__main__.allowances.write.syscall_ptr": 114, - "__main__.allowances.write.value": 113 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 217, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 9, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 217 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 28 - } - }, - "180": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 51 - }, - "reference_ids": { - "__main__.allowances.write.owner": 111, - "__main__.allowances.write.pedersen_ptr": 117, - "__main__.allowances.write.range_check_ptr": 118, - "__main__.allowances.write.spender": 112, - "__main__.allowances.write.storage_addr": 119, - "__main__.allowances.write.syscall_ptr": 114, - "__main__.allowances.write.value": 113 - } - }, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 31, - "start_line": 31 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 30 - } - }, - "181": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 52 - }, - "reference_ids": { - "__main__.allowances.write.owner": 111, - "__main__.allowances.write.pedersen_ptr": 117, - "__main__.allowances.write.range_check_ptr": 118, - "__main__.allowances.write.spender": 112, - "__main__.allowances.write.storage_addr": 119, - "__main__.allowances.write.syscall_ptr": 114, - "__main__.allowances.write.value": 113 - } - }, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 55, - "start_line": 31 - } - }, - "182": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 53 - }, - "reference_ids": { - "__main__.allowances.write.owner": 111, - "__main__.allowances.write.pedersen_ptr": 117, - "__main__.allowances.write.range_check_ptr": 118, - "__main__.allowances.write.spender": 112, - "__main__.allowances.write.storage_addr": 119, - "__main__.allowances.write.syscall_ptr": 114, - "__main__.allowances.write.value": 113 - } - }, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 9, - "start_line": 31 - } - }, - "184": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 57 - }, - "reference_ids": { - "__main__.allowances.write.owner": 111, - "__main__.allowances.write.pedersen_ptr": 117, - "__main__.allowances.write.range_check_ptr": 118, - "__main__.allowances.write.spender": 112, - "__main__.allowances.write.storage_addr": 119, - "__main__.allowances.write.syscall_ptr": 120, - "__main__.allowances.write.value": 113 - } - }, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 30 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "185": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 58 - }, - "reference_ids": { - "__main__.allowances.write.owner": 111, - "__main__.allowances.write.pedersen_ptr": 117, - "__main__.allowances.write.range_check_ptr": 118, - "__main__.allowances.write.spender": 112, - "__main__.allowances.write.storage_addr": 119, - "__main__.allowances.write.syscall_ptr": 120, - "__main__.allowances.write.value": 113 - } - }, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 30 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "186": { - "accessible_scopes": ["__main__", "__main__.allowances", "__main__.allowances.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 59 - }, - "reference_ids": { - "__main__.allowances.write.owner": 111, - "__main__.allowances.write.pedersen_ptr": 117, - "__main__.allowances.write.range_check_ptr": 118, - "__main__.allowances.write.spender": 112, - "__main__.allowances.write.storage_addr": 119, - "__main__.allowances.write.syscall_ptr": 120, - "__main__.allowances.write.value": 113 - } - }, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - } - }, - "187": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 15, - "offset": 0 - }, - "reference_ids": { - "__main__.total_supply.addr.pedersen_ptr": 121, - "__main__.total_supply.addr.range_check_ptr": 122, - "__main__.total_supply.addr.res": 123 - } - }, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "188": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 15, - "offset": 1 - }, - "reference_ids": { - "__main__.total_supply.addr.pedersen_ptr": 121, - "__main__.total_supply.addr.range_check_ptr": 122, - "__main__.total_supply.addr.res": 123 - } - }, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "189": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 15, - "offset": 2 - }, - "reference_ids": { - "__main__.total_supply.addr.pedersen_ptr": 121, - "__main__.total_supply.addr.range_check_ptr": 122, - "__main__.total_supply.addr.res": 123 - } - }, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "191": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 15, - "offset": 3 - }, - "reference_ids": { - "__main__.total_supply.addr.pedersen_ptr": 121, - "__main__.total_supply.addr.range_check_ptr": 122, - "__main__.total_supply.addr.res": 123 - } - }, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "192": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 0 - }, - "reference_ids": { - "__main__.total_supply.read.pedersen_ptr": 125, - "__main__.total_supply.read.range_check_ptr": 126, - "__main__.total_supply.read.syscall_ptr": 124 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 12 - } - }, - "193": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 1 - }, - "reference_ids": { - "__main__.total_supply.read.pedersen_ptr": 125, - "__main__.total_supply.read.range_check_ptr": 126, - "__main__.total_supply.read.syscall_ptr": 124 - } - }, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 12 - } - }, - "194": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 2 - }, - "reference_ids": { - "__main__.total_supply.read.pedersen_ptr": 125, - "__main__.total_supply.read.range_check_ptr": 126, - "__main__.total_supply.read.syscall_ptr": 124 - } - }, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "196": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 7 - }, - "reference_ids": { - "__main__.total_supply.read.pedersen_ptr": 127, - "__main__.total_supply.read.range_check_ptr": 128, - "__main__.total_supply.read.storage_addr": 129, - "__main__.total_supply.read.syscall_ptr": 124 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 199, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 199 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "197": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 8 - }, - "reference_ids": { - "__main__.total_supply.read.pedersen_ptr": 127, - "__main__.total_supply.read.range_check_ptr": 128, - "__main__.total_supply.read.storage_addr": 129, - "__main__.total_supply.read.syscall_ptr": 124 - } - }, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "198": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 9 - }, - "reference_ids": { - "__main__.total_supply.read.pedersen_ptr": 127, - "__main__.total_supply.read.range_check_ptr": 128, - "__main__.total_supply.read.storage_addr": 129, - "__main__.total_supply.read.syscall_ptr": 124 - } - }, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "200": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 14 - }, - "reference_ids": { - "__main__.total_supply.read.__storage_var_temp0": 131, - "__main__.total_supply.read.pedersen_ptr": 127, - "__main__.total_supply.read.range_check_ptr": 128, - "__main__.total_supply.read.storage_addr": 129, - "__main__.total_supply.read.syscall_ptr": 130 - } - }, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 199, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 199 - } - }, - "201": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 15 - }, - "reference_ids": { - "__main__.total_supply.read.__storage_var_temp0": 131, - "__main__.total_supply.read.pedersen_ptr": 127, - "__main__.total_supply.read.range_check_ptr": 128, - "__main__.total_supply.read.storage_addr": 129, - "__main__.total_supply.read.syscall_ptr": 132 - } - }, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "202": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 16 - }, - "reference_ids": { - "__main__.total_supply.read.__storage_var_temp0": 131, - "__main__.total_supply.read.pedersen_ptr": 133, - "__main__.total_supply.read.range_check_ptr": 128, - "__main__.total_supply.read.storage_addr": 129, - "__main__.total_supply.read.syscall_ptr": 132 - } - }, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "203": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 17 - }, - "reference_ids": { - "__main__.total_supply.read.__storage_var_temp0": 131, - "__main__.total_supply.read.pedersen_ptr": 133, - "__main__.total_supply.read.range_check_ptr": 134, - "__main__.total_supply.read.storage_addr": 129, - "__main__.total_supply.read.syscall_ptr": 132 - } - }, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 46, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "204": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 18 - }, - "reference_ids": { - "__main__.total_supply.read.__storage_var_temp0": 135, - "__main__.total_supply.read.pedersen_ptr": 133, - "__main__.total_supply.read.range_check_ptr": 134, - "__main__.total_supply.read.storage_addr": 129, - "__main__.total_supply.read.syscall_ptr": 132 - } - }, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "205": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 17, - "offset": 0 - }, - "reference_ids": { - "__main__.total_supply.write.pedersen_ptr": 138, - "__main__.total_supply.write.range_check_ptr": 139, - "__main__.total_supply.write.syscall_ptr": 137, - "__main__.total_supply.write.value": 136 - } - }, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 23 - } - }, - "206": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 17, - "offset": 1 - }, - "reference_ids": { - "__main__.total_supply.write.pedersen_ptr": 138, - "__main__.total_supply.write.range_check_ptr": 139, - "__main__.total_supply.write.syscall_ptr": 137, - "__main__.total_supply.write.value": 136 - } - }, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 23 - } - }, - "207": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 17, - "offset": 2 - }, - "reference_ids": { - "__main__.total_supply.write.pedersen_ptr": 138, - "__main__.total_supply.write.range_check_ptr": 139, - "__main__.total_supply.write.syscall_ptr": 137, - "__main__.total_supply.write.value": 136 - } - }, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "209": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 17, - "offset": 7 - }, - "reference_ids": { - "__main__.total_supply.write.pedersen_ptr": 140, - "__main__.total_supply.write.range_check_ptr": 141, - "__main__.total_supply.write.storage_addr": 142, - "__main__.total_supply.write.syscall_ptr": 137, - "__main__.total_supply.write.value": 136 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 217, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 217 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "210": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 17, - "offset": 8 - }, - "reference_ids": { - "__main__.total_supply.write.pedersen_ptr": 140, - "__main__.total_supply.write.range_check_ptr": 141, - "__main__.total_supply.write.storage_addr": 142, - "__main__.total_supply.write.syscall_ptr": 137, - "__main__.total_supply.write.value": 136 - } - }, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "211": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 17, - "offset": 9 - }, - "reference_ids": { - "__main__.total_supply.write.pedersen_ptr": 140, - "__main__.total_supply.write.range_check_ptr": 141, - "__main__.total_supply.write.storage_addr": 142, - "__main__.total_supply.write.syscall_ptr": 137, - "__main__.total_supply.write.value": 136 - } - }, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "212": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 17, - "offset": 10 - }, - "reference_ids": { - "__main__.total_supply.write.pedersen_ptr": 140, - "__main__.total_supply.write.range_check_ptr": 141, - "__main__.total_supply.write.storage_addr": 142, - "__main__.total_supply.write.syscall_ptr": 137, - "__main__.total_supply.write.value": 136 - } - }, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "214": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 17, - "offset": 14 - }, - "reference_ids": { - "__main__.total_supply.write.pedersen_ptr": 140, - "__main__.total_supply.write.range_check_ptr": 141, - "__main__.total_supply.write.storage_addr": 142, - "__main__.total_supply.write.syscall_ptr": 143, - "__main__.total_supply.write.value": 136 - } - }, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "215": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 17, - "offset": 15 - }, - "reference_ids": { - "__main__.total_supply.write.pedersen_ptr": 140, - "__main__.total_supply.write.range_check_ptr": 141, - "__main__.total_supply.write.storage_addr": 142, - "__main__.total_supply.write.syscall_ptr": 143, - "__main__.total_supply.write.value": 136 - } - }, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "216": { - "accessible_scopes": ["__main__", "__main__.total_supply", "__main__.total_supply.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 17, - "offset": 16 - }, - "reference_ids": { - "__main__.total_supply.write.pedersen_ptr": 140, - "__main__.total_supply.write.range_check_ptr": 141, - "__main__.total_supply.write.storage_addr": 142, - "__main__.total_supply.write.syscall_ptr": 143, - "__main__.total_supply.write.value": 136 - } - }, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "217": { - "accessible_scopes": ["__main__", "__main__", "__main__.decimals"], - "flow_tracking_data": { - "ap_tracking": { - "group": 18, - "offset": 0 - }, - "reference_ids": {} - }, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 26, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 13, - "start_line": 26 - } - }, - "219": { - "accessible_scopes": ["__main__", "__main__", "__main__.decimals"], - "flow_tracking_data": { - "ap_tracking": { - "group": 18, - "offset": 1 - }, - "reference_ids": {} - }, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 26, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 26 - } - }, - "220": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.decimals_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 19, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.decimals_encode_return.range_check_ptr": 145, - "__wrappers__.decimals_encode_return.ret_struct": 144 - } - }, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/decimals/f932f3e96060fc4a651141d261844a3ea225e285c1f2e05218e5347ae192a887.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 17, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/decimals/f932f3e96060fc4a651141d261844a3ea225e285c1f2e05218e5347ae192a887.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "222": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.decimals_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 19, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.decimals_encode_return.__return_value_ptr": 147, - "__wrappers__.decimals_encode_return.__return_value_ptr_start": 146, - "__wrappers__.decimals_encode_return.range_check_ptr": 145, - "__wrappers__.decimals_encode_return.ret_struct": 144 - } - }, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/fee896b6d05b2e98056b5628baa6fbee0adfb8960f3fee9d79fd2f066956cc42.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 21, - "start_line": 25 - }, - "While handling return value 'res'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "223": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.decimals_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 19, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.decimals_encode_return.__return_value_ptr": 148, - "__wrappers__.decimals_encode_return.__return_value_ptr_start": 146, - "__wrappers__.decimals_encode_return.range_check_ptr": 145, - "__wrappers__.decimals_encode_return.ret_struct": 144 - } - }, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/fee896b6d05b2e98056b5628baa6fbee0adfb8960f3fee9d79fd2f066956cc42.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/decimals/f932f3e96060fc4a651141d261844a3ea225e285c1f2e05218e5347ae192a887.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 21, - "start_line": 25 - }, - "While handling return value 'res'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "225": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.decimals_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 19, - "offset": 2 - }, - "reference_ids": { - "__wrappers__.decimals_encode_return.__return_value_ptr": 148, - "__wrappers__.decimals_encode_return.__return_value_ptr_start": 146, - "__wrappers__.decimals_encode_return.__temp11": 149, - "__wrappers__.decimals_encode_return.range_check_ptr": 145, - "__wrappers__.decimals_encode_return.ret_struct": 144 - } - }, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/decimals/f932f3e96060fc4a651141d261844a3ea225e285c1f2e05218e5347ae192a887.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/decimals/f932f3e96060fc4a651141d261844a3ea225e285c1f2e05218e5347ae192a887.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 68, - "start_line": 1 - } - }, - "226": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.decimals_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 19, - "offset": 3 - }, - "reference_ids": { - "__wrappers__.decimals_encode_return.__return_value_ptr": 148, - "__wrappers__.decimals_encode_return.__return_value_ptr_start": 146, - "__wrappers__.decimals_encode_return.__temp11": 149, - "__wrappers__.decimals_encode_return.range_check_ptr": 145, - "__wrappers__.decimals_encode_return.ret_struct": 144 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/decimals/f932f3e96060fc4a651141d261844a3ea225e285c1f2e05218e5347ae192a887.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "227": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.decimals_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 19, - "offset": 4 - }, - "reference_ids": { - "__wrappers__.decimals_encode_return.__return_value_ptr": 148, - "__wrappers__.decimals_encode_return.__return_value_ptr_start": 146, - "__wrappers__.decimals_encode_return.__temp11": 149, - "__wrappers__.decimals_encode_return.range_check_ptr": 145, - "__wrappers__.decimals_encode_return.ret_struct": 144 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/decimals/f932f3e96060fc4a651141d261844a3ea225e285c1f2e05218e5347ae192a887.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/decimals/f932f3e96060fc4a651141d261844a3ea225e285c1f2e05218e5347ae192a887.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "228": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.decimals_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 19, - "offset": 5 - }, - "reference_ids": { - "__wrappers__.decimals_encode_return.__return_value_ptr": 148, - "__wrappers__.decimals_encode_return.__return_value_ptr_start": 146, - "__wrappers__.decimals_encode_return.__temp11": 149, - "__wrappers__.decimals_encode_return.range_check_ptr": 145, - "__wrappers__.decimals_encode_return.ret_struct": 144 - } - }, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/decimals/f932f3e96060fc4a651141d261844a3ea225e285c1f2e05218e5347ae192a887.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "229": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.decimals"], - "flow_tracking_data": { - "ap_tracking": { - "group": 20, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.decimals.__calldata_actual_size": 155, - "__wrappers__.decimals.__calldata_ptr": 154, - "__wrappers__.decimals.ecdsa_ptr": 153, - "__wrappers__.decimals.pedersen_ptr": 151, - "__wrappers__.decimals.range_check_ptr": 152, - "__wrappers__.decimals.syscall_ptr": 150 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "230": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.decimals"], - "flow_tracking_data": { - "ap_tracking": { - "group": 20, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.decimals.__calldata_actual_size": 155, - "__wrappers__.decimals.__calldata_ptr": 154, - "__wrappers__.decimals.ecdsa_ptr": 153, - "__wrappers__.decimals.pedersen_ptr": 151, - "__wrappers__.decimals.range_check_ptr": 152, - "__wrappers__.decimals.syscall_ptr": 150 - } - }, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - } - }, - "232": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.decimals"], - "flow_tracking_data": { - "ap_tracking": { - "group": 20, - "offset": 3 - }, - "reference_ids": { - "__wrappers__.decimals.__calldata_actual_size": 155, - "__wrappers__.decimals.__calldata_ptr": 154, - "__wrappers__.decimals.ecdsa_ptr": 153, - "__wrappers__.decimals.pedersen_ptr": 151, - "__wrappers__.decimals.range_check_ptr": 152, - "__wrappers__.decimals.ret_struct": 156, - "__wrappers__.decimals.syscall_ptr": 150 - } - }, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/decimals/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 98, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/decimals/29aa250fc3350a9f31b72cc1f90d1836370cfa24280d3a3794157df45b73f6a9.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 83, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "233": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.decimals"], - "flow_tracking_data": { - "ap_tracking": { - "group": 20, - "offset": 4 - }, - "reference_ids": { - "__wrappers__.decimals.__calldata_actual_size": 155, - "__wrappers__.decimals.__calldata_ptr": 154, - "__wrappers__.decimals.ecdsa_ptr": 153, - "__wrappers__.decimals.pedersen_ptr": 151, - "__wrappers__.decimals.range_check_ptr": 152, - "__wrappers__.decimals.ret_struct": 156, - "__wrappers__.decimals.syscall_ptr": 150 - } - }, - "hints": [], - "inst": { - "end_col": 99, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/decimals/29aa250fc3350a9f31b72cc1f90d1836370cfa24280d3a3794157df45b73f6a9.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "235": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.decimals"], - "flow_tracking_data": { - "ap_tracking": { - "group": 20, - "offset": 11 - }, - "reference_ids": { - "__wrappers__.decimals.__calldata_actual_size": 155, - "__wrappers__.decimals.__calldata_ptr": 154, - "__wrappers__.decimals.ecdsa_ptr": 153, - "__wrappers__.decimals.pedersen_ptr": 151, - "__wrappers__.decimals.range_check_ptr": 157, - "__wrappers__.decimals.ret_struct": 156, - "__wrappers__.decimals.retdata": 159, - "__wrappers__.decimals.retdata_size": 158, - "__wrappers__.decimals.syscall_ptr": 150 - } - }, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/decimals/5fde12919a619b4f3b6db54e029b6f16cf362872762815d37c1ecd8dc9763296.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/decimals/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "236": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.decimals"], - "flow_tracking_data": { - "ap_tracking": { - "group": 20, - "offset": 12 - }, - "reference_ids": { - "__wrappers__.decimals.__calldata_actual_size": 155, - "__wrappers__.decimals.__calldata_ptr": 154, - "__wrappers__.decimals.ecdsa_ptr": 153, - "__wrappers__.decimals.pedersen_ptr": 151, - "__wrappers__.decimals.range_check_ptr": 157, - "__wrappers__.decimals.ret_struct": 156, - "__wrappers__.decimals.retdata": 159, - "__wrappers__.decimals.retdata_size": 158, - "__wrappers__.decimals.syscall_ptr": 150 - } - }, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/decimals/2b2b112e26c3beede5b9972951116a97636fe75acd4b9f33c1ffe390f55843c4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/decimals/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "237": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.decimals"], - "flow_tracking_data": { - "ap_tracking": { - "group": 20, - "offset": 13 - }, - "reference_ids": { - "__wrappers__.decimals.__calldata_actual_size": 155, - "__wrappers__.decimals.__calldata_ptr": 154, - "__wrappers__.decimals.ecdsa_ptr": 153, - "__wrappers__.decimals.pedersen_ptr": 151, - "__wrappers__.decimals.range_check_ptr": 157, - "__wrappers__.decimals.ret_struct": 156, - "__wrappers__.decimals.retdata": 159, - "__wrappers__.decimals.retdata_size": 158, - "__wrappers__.decimals.syscall_ptr": 150 - } - }, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/decimals/29aa250fc3350a9f31b72cc1f90d1836370cfa24280d3a3794157df45b73f6a9.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/decimals/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "238": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.decimals"], - "flow_tracking_data": { - "ap_tracking": { - "group": 20, - "offset": 14 - }, - "reference_ids": { - "__wrappers__.decimals.__calldata_actual_size": 155, - "__wrappers__.decimals.__calldata_ptr": 154, - "__wrappers__.decimals.ecdsa_ptr": 153, - "__wrappers__.decimals.pedersen_ptr": 151, - "__wrappers__.decimals.range_check_ptr": 157, - "__wrappers__.decimals.ret_struct": 156, - "__wrappers__.decimals.retdata": 159, - "__wrappers__.decimals.retdata_size": 158, - "__wrappers__.decimals.syscall_ptr": 150 - } - }, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/decimals/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/decimals/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "239": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.decimals"], - "flow_tracking_data": { - "ap_tracking": { - "group": 20, - "offset": 15 - }, - "reference_ids": { - "__wrappers__.decimals.__calldata_actual_size": 155, - "__wrappers__.decimals.__calldata_ptr": 154, - "__wrappers__.decimals.ecdsa_ptr": 153, - "__wrappers__.decimals.pedersen_ptr": 151, - "__wrappers__.decimals.range_check_ptr": 157, - "__wrappers__.decimals.ret_struct": 156, - "__wrappers__.decimals.retdata": 159, - "__wrappers__.decimals.retdata_size": 158, - "__wrappers__.decimals.syscall_ptr": 150 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/decimals/29aa250fc3350a9f31b72cc1f90d1836370cfa24280d3a3794157df45b73f6a9.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/decimals/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "240": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.decimals"], - "flow_tracking_data": { - "ap_tracking": { - "group": 20, - "offset": 16 - }, - "reference_ids": { - "__wrappers__.decimals.__calldata_actual_size": 155, - "__wrappers__.decimals.__calldata_ptr": 154, - "__wrappers__.decimals.ecdsa_ptr": 153, - "__wrappers__.decimals.pedersen_ptr": 151, - "__wrappers__.decimals.range_check_ptr": 157, - "__wrappers__.decimals.ret_struct": 156, - "__wrappers__.decimals.retdata": 159, - "__wrappers__.decimals.retdata_size": 158, - "__wrappers__.decimals.syscall_ptr": 150 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/decimals/29aa250fc3350a9f31b72cc1f90d1836370cfa24280d3a3794157df45b73f6a9.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/decimals/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "241": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.decimals"], - "flow_tracking_data": { - "ap_tracking": { - "group": 20, - "offset": 17 - }, - "reference_ids": { - "__wrappers__.decimals.__calldata_actual_size": 155, - "__wrappers__.decimals.__calldata_ptr": 154, - "__wrappers__.decimals.ecdsa_ptr": 153, - "__wrappers__.decimals.pedersen_ptr": 151, - "__wrappers__.decimals.range_check_ptr": 157, - "__wrappers__.decimals.ret_struct": 156, - "__wrappers__.decimals.retdata": 159, - "__wrappers__.decimals.retdata_size": 158, - "__wrappers__.decimals.syscall_ptr": 150 - } - }, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/decimals/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "242": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 21, - "offset": 0 - }, - "reference_ids": { - "__main__.initialized.addr.pedersen_ptr": 160, - "__main__.initialized.addr.range_check_ptr": 161, - "__main__.initialized.addr.res": 162 - } - }, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "243": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 21, - "offset": 1 - }, - "reference_ids": { - "__main__.initialized.addr.pedersen_ptr": 160, - "__main__.initialized.addr.range_check_ptr": 161, - "__main__.initialized.addr.res": 162 - } - }, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "244": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 21, - "offset": 2 - }, - "reference_ids": { - "__main__.initialized.addr.pedersen_ptr": 160, - "__main__.initialized.addr.range_check_ptr": 161, - "__main__.initialized.addr.res": 162 - } - }, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "246": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.addr"], - "flow_tracking_data": { - "ap_tracking": { - "group": 21, - "offset": 3 - }, - "reference_ids": { - "__main__.initialized.addr.pedersen_ptr": 160, - "__main__.initialized.addr.range_check_ptr": 161, - "__main__.initialized.addr.res": 162 - } - }, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "247": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 22, - "offset": 0 - }, - "reference_ids": { - "__main__.initialized.read.pedersen_ptr": 164, - "__main__.initialized.read.range_check_ptr": 165, - "__main__.initialized.read.syscall_ptr": 163 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 12 - } - }, - "248": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 22, - "offset": 1 - }, - "reference_ids": { - "__main__.initialized.read.pedersen_ptr": 164, - "__main__.initialized.read.range_check_ptr": 165, - "__main__.initialized.read.syscall_ptr": 163 - } - }, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 12 - } - }, - "249": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 22, - "offset": 2 - }, - "reference_ids": { - "__main__.initialized.read.pedersen_ptr": 164, - "__main__.initialized.read.range_check_ptr": 165, - "__main__.initialized.read.syscall_ptr": 163 - } - }, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "251": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 22, - "offset": 7 - }, - "reference_ids": { - "__main__.initialized.read.pedersen_ptr": 166, - "__main__.initialized.read.range_check_ptr": 167, - "__main__.initialized.read.storage_addr": 168, - "__main__.initialized.read.syscall_ptr": 163 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 199, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 199 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "252": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 22, - "offset": 8 - }, - "reference_ids": { - "__main__.initialized.read.pedersen_ptr": 166, - "__main__.initialized.read.range_check_ptr": 167, - "__main__.initialized.read.storage_addr": 168, - "__main__.initialized.read.syscall_ptr": 163 - } - }, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "253": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 22, - "offset": 9 - }, - "reference_ids": { - "__main__.initialized.read.pedersen_ptr": 166, - "__main__.initialized.read.range_check_ptr": 167, - "__main__.initialized.read.storage_addr": 168, - "__main__.initialized.read.syscall_ptr": 163 - } - }, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "255": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 22, - "offset": 14 - }, - "reference_ids": { - "__main__.initialized.read.__storage_var_temp0": 170, - "__main__.initialized.read.pedersen_ptr": 166, - "__main__.initialized.read.range_check_ptr": 167, - "__main__.initialized.read.storage_addr": 168, - "__main__.initialized.read.syscall_ptr": 169 - } - }, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 199, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 199 - } - }, - "256": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 22, - "offset": 15 - }, - "reference_ids": { - "__main__.initialized.read.__storage_var_temp0": 170, - "__main__.initialized.read.pedersen_ptr": 166, - "__main__.initialized.read.range_check_ptr": 167, - "__main__.initialized.read.storage_addr": 168, - "__main__.initialized.read.syscall_ptr": 171 - } - }, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "257": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 22, - "offset": 16 - }, - "reference_ids": { - "__main__.initialized.read.__storage_var_temp0": 170, - "__main__.initialized.read.pedersen_ptr": 172, - "__main__.initialized.read.range_check_ptr": 167, - "__main__.initialized.read.storage_addr": 168, - "__main__.initialized.read.syscall_ptr": 171 - } - }, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "258": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 22, - "offset": 17 - }, - "reference_ids": { - "__main__.initialized.read.__storage_var_temp0": 170, - "__main__.initialized.read.pedersen_ptr": 172, - "__main__.initialized.read.range_check_ptr": 173, - "__main__.initialized.read.storage_addr": 168, - "__main__.initialized.read.syscall_ptr": 171 - } - }, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 46, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "259": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.read"], - "flow_tracking_data": { - "ap_tracking": { - "group": 22, - "offset": 18 - }, - "reference_ids": { - "__main__.initialized.read.__storage_var_temp0": 174, - "__main__.initialized.read.pedersen_ptr": 172, - "__main__.initialized.read.range_check_ptr": 173, - "__main__.initialized.read.storage_addr": 168, - "__main__.initialized.read.syscall_ptr": 171 - } - }, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "260": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 23, - "offset": 0 - }, - "reference_ids": { - "__main__.initialized.write.pedersen_ptr": 177, - "__main__.initialized.write.range_check_ptr": 178, - "__main__.initialized.write.syscall_ptr": 176, - "__main__.initialized.write.value": 175 - } - }, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 23 - } - }, - "261": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 23, - "offset": 1 - }, - "reference_ids": { - "__main__.initialized.write.pedersen_ptr": 177, - "__main__.initialized.write.range_check_ptr": 178, - "__main__.initialized.write.syscall_ptr": 176, - "__main__.initialized.write.value": 175 - } - }, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 23 - } - }, - "262": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 23, - "offset": 2 - }, - "reference_ids": { - "__main__.initialized.write.pedersen_ptr": 177, - "__main__.initialized.write.range_check_ptr": 178, - "__main__.initialized.write.syscall_ptr": 176, - "__main__.initialized.write.value": 175 - } - }, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "264": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 23, - "offset": 7 - }, - "reference_ids": { - "__main__.initialized.write.pedersen_ptr": 179, - "__main__.initialized.write.range_check_ptr": 180, - "__main__.initialized.write.storage_addr": 181, - "__main__.initialized.write.syscall_ptr": 176, - "__main__.initialized.write.value": 175 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 217, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 217 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "265": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 23, - "offset": 8 - }, - "reference_ids": { - "__main__.initialized.write.pedersen_ptr": 179, - "__main__.initialized.write.range_check_ptr": 180, - "__main__.initialized.write.storage_addr": 181, - "__main__.initialized.write.syscall_ptr": 176, - "__main__.initialized.write.value": 175 - } - }, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "266": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 23, - "offset": 9 - }, - "reference_ids": { - "__main__.initialized.write.pedersen_ptr": 179, - "__main__.initialized.write.range_check_ptr": 180, - "__main__.initialized.write.storage_addr": 181, - "__main__.initialized.write.syscall_ptr": 176, - "__main__.initialized.write.value": 175 - } - }, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "267": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 23, - "offset": 10 - }, - "reference_ids": { - "__main__.initialized.write.pedersen_ptr": 179, - "__main__.initialized.write.range_check_ptr": 180, - "__main__.initialized.write.storage_addr": 181, - "__main__.initialized.write.syscall_ptr": 176, - "__main__.initialized.write.value": 175 - } - }, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "269": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 23, - "offset": 14 - }, - "reference_ids": { - "__main__.initialized.write.pedersen_ptr": 179, - "__main__.initialized.write.range_check_ptr": 180, - "__main__.initialized.write.storage_addr": 181, - "__main__.initialized.write.syscall_ptr": 182, - "__main__.initialized.write.value": 175 - } - }, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "270": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 23, - "offset": 15 - }, - "reference_ids": { - "__main__.initialized.write.pedersen_ptr": 179, - "__main__.initialized.write.range_check_ptr": 180, - "__main__.initialized.write.storage_addr": 181, - "__main__.initialized.write.syscall_ptr": 182, - "__main__.initialized.write.value": 175 - } - }, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "271": { - "accessible_scopes": ["__main__", "__main__.initialized", "__main__.initialized.write"], - "flow_tracking_data": { - "ap_tracking": { - "group": 23, - "offset": 16 - }, - "reference_ids": { - "__main__.initialized.write.pedersen_ptr": 179, - "__main__.initialized.write.range_check_ptr": 180, - "__main__.initialized.write.storage_addr": 181, - "__main__.initialized.write.syscall_ptr": 182, - "__main__.initialized.write.value": 175 - } - }, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "272": { - "accessible_scopes": ["__main__", "__main__", "__main__.get_total_supply"], - "flow_tracking_data": { - "ap_tracking": { - "group": 24, - "offset": 0 - }, - "reference_ids": { - "__main__.get_total_supply.pedersen_ptr": 184, - "__main__.get_total_supply.range_check_ptr": 185, - "__main__.get_total_supply.syscall_ptr": 183 - } - }, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 39, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 43, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 43 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 39 - } - }, - "273": { - "accessible_scopes": ["__main__", "__main__", "__main__.get_total_supply"], - "flow_tracking_data": { - "ap_tracking": { - "group": 24, - "offset": 1 - }, - "reference_ids": { - "__main__.get_total_supply.pedersen_ptr": 184, - "__main__.get_total_supply.range_check_ptr": 185, - "__main__.get_total_supply.syscall_ptr": 183 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 40, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 43, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 43 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 40 - } - }, - "274": { - "accessible_scopes": ["__main__", "__main__", "__main__.get_total_supply"], - "flow_tracking_data": { - "ap_tracking": { - "group": 24, - "offset": 2 - }, - "reference_ids": { - "__main__.get_total_supply.pedersen_ptr": 184, - "__main__.get_total_supply.range_check_ptr": 185, - "__main__.get_total_supply.syscall_ptr": 183 - } - }, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 41, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 43, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 43 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 41 - } - }, - "275": { - "accessible_scopes": ["__main__", "__main__", "__main__.get_total_supply"], - "flow_tracking_data": { - "ap_tracking": { - "group": 24, - "offset": 3 - }, - "reference_ids": { - "__main__.get_total_supply.pedersen_ptr": 184, - "__main__.get_total_supply.range_check_ptr": 185, - "__main__.get_total_supply.syscall_ptr": 183 - } - }, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 43, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 43 - } - }, - "277": { - "accessible_scopes": ["__main__", "__main__", "__main__.get_total_supply"], - "flow_tracking_data": { - "ap_tracking": { - "group": 24, - "offset": 23 - }, - "reference_ids": { - "__main__.get_total_supply.pedersen_ptr": 187, - "__main__.get_total_supply.range_check_ptr": 188, - "__main__.get_total_supply.res": 189, - "__main__.get_total_supply.syscall_ptr": 186 - } - }, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 44, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 44 - } - }, - "278": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 25, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.get_total_supply_encode_return.range_check_ptr": 191, - "__wrappers__.get_total_supply_encode_return.ret_struct": 190 - } - }, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/get_total_supply/c1fb1e2a904ead052d8241ff0c2299a0275d69e871013bea513513895a92cd66.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 17, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/get_total_supply/c1fb1e2a904ead052d8241ff0c2299a0275d69e871013bea513513895a92cd66.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "280": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 25, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.get_total_supply_encode_return.__return_value_ptr": 193, - "__wrappers__.get_total_supply_encode_return.__return_value_ptr_start": 192, - "__wrappers__.get_total_supply_encode_return.range_check_ptr": 191, - "__wrappers__.get_total_supply_encode_return.ret_struct": 190 - } - }, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/fee896b6d05b2e98056b5628baa6fbee0adfb8960f3fee9d79fd2f066956cc42.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 42, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 14, - "start_line": 42 - }, - "While handling return value 'res'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "281": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 25, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.get_total_supply_encode_return.__return_value_ptr": 194, - "__wrappers__.get_total_supply_encode_return.__return_value_ptr_start": 192, - "__wrappers__.get_total_supply_encode_return.range_check_ptr": 191, - "__wrappers__.get_total_supply_encode_return.ret_struct": 190 - } - }, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/fee896b6d05b2e98056b5628baa6fbee0adfb8960f3fee9d79fd2f066956cc42.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 42, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/get_total_supply/c1fb1e2a904ead052d8241ff0c2299a0275d69e871013bea513513895a92cd66.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 14, - "start_line": 42 - }, - "While handling return value 'res'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "283": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 25, - "offset": 2 - }, - "reference_ids": { - "__wrappers__.get_total_supply_encode_return.__return_value_ptr": 194, - "__wrappers__.get_total_supply_encode_return.__return_value_ptr_start": 192, - "__wrappers__.get_total_supply_encode_return.__temp12": 195, - "__wrappers__.get_total_supply_encode_return.range_check_ptr": 191, - "__wrappers__.get_total_supply_encode_return.ret_struct": 190 - } - }, - "hints": [], - "inst": { - "end_col": 99, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/get_total_supply/c1fb1e2a904ead052d8241ff0c2299a0275d69e871013bea513513895a92cd66.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/get_total_supply/c1fb1e2a904ead052d8241ff0c2299a0275d69e871013bea513513895a92cd66.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 38 - }, - "While handling return value of" - ], - "start_col": 84, - "start_line": 1 - } - }, - "284": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 25, - "offset": 3 - }, - "reference_ids": { - "__wrappers__.get_total_supply_encode_return.__return_value_ptr": 194, - "__wrappers__.get_total_supply_encode_return.__return_value_ptr_start": 192, - "__wrappers__.get_total_supply_encode_return.__temp12": 195, - "__wrappers__.get_total_supply_encode_return.range_check_ptr": 191, - "__wrappers__.get_total_supply_encode_return.ret_struct": 190 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/get_total_supply/c1fb1e2a904ead052d8241ff0c2299a0275d69e871013bea513513895a92cd66.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "285": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 25, - "offset": 4 - }, - "reference_ids": { - "__wrappers__.get_total_supply_encode_return.__return_value_ptr": 194, - "__wrappers__.get_total_supply_encode_return.__return_value_ptr_start": 192, - "__wrappers__.get_total_supply_encode_return.__temp12": 195, - "__wrappers__.get_total_supply_encode_return.range_check_ptr": 191, - "__wrappers__.get_total_supply_encode_return.ret_struct": 190 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/get_total_supply/c1fb1e2a904ead052d8241ff0c2299a0275d69e871013bea513513895a92cd66.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/get_total_supply/c1fb1e2a904ead052d8241ff0c2299a0275d69e871013bea513513895a92cd66.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 38 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "286": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 25, - "offset": 5 - }, - "reference_ids": { - "__wrappers__.get_total_supply_encode_return.__return_value_ptr": 194, - "__wrappers__.get_total_supply_encode_return.__return_value_ptr_start": 192, - "__wrappers__.get_total_supply_encode_return.__temp12": 195, - "__wrappers__.get_total_supply_encode_return.range_check_ptr": 191, - "__wrappers__.get_total_supply_encode_return.ret_struct": 190 - } - }, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/get_total_supply/c1fb1e2a904ead052d8241ff0c2299a0275d69e871013bea513513895a92cd66.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "287": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 26, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.get_total_supply.__calldata_actual_size": 201, - "__wrappers__.get_total_supply.__calldata_ptr": 200, - "__wrappers__.get_total_supply.ecdsa_ptr": 199, - "__wrappers__.get_total_supply.pedersen_ptr": 197, - "__wrappers__.get_total_supply.range_check_ptr": 198, - "__wrappers__.get_total_supply.syscall_ptr": 196 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "288": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 26, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.get_total_supply.__calldata_actual_size": 201, - "__wrappers__.get_total_supply.__calldata_ptr": 200, - "__wrappers__.get_total_supply.ecdsa_ptr": 199, - "__wrappers__.get_total_supply.pedersen_ptr": 197, - "__wrappers__.get_total_supply.range_check_ptr": 198, - "__wrappers__.get_total_supply.syscall_ptr": 196 - } - }, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 39, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/c968b0a0274c4d4d05dd2024f19d5a639755cdd3a7dc35405733e09c8fe279a3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 39 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "289": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 26, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.get_total_supply.__calldata_actual_size": 201, - "__wrappers__.get_total_supply.__calldata_ptr": 200, - "__wrappers__.get_total_supply.ecdsa_ptr": 199, - "__wrappers__.get_total_supply.pedersen_ptr": 197, - "__wrappers__.get_total_supply.range_check_ptr": 198, - "__wrappers__.get_total_supply.syscall_ptr": 196 - } - }, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 40, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/c968b0a0274c4d4d05dd2024f19d5a639755cdd3a7dc35405733e09c8fe279a3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 40 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "290": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 26, - "offset": 2 - }, - "reference_ids": { - "__wrappers__.get_total_supply.__calldata_actual_size": 201, - "__wrappers__.get_total_supply.__calldata_ptr": 200, - "__wrappers__.get_total_supply.ecdsa_ptr": 199, - "__wrappers__.get_total_supply.pedersen_ptr": 197, - "__wrappers__.get_total_supply.range_check_ptr": 198, - "__wrappers__.get_total_supply.syscall_ptr": 196 - } - }, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 41, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/c968b0a0274c4d4d05dd2024f19d5a639755cdd3a7dc35405733e09c8fe279a3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "291": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 26, - "offset": 3 - }, - "reference_ids": { - "__wrappers__.get_total_supply.__calldata_actual_size": 201, - "__wrappers__.get_total_supply.__calldata_ptr": 200, - "__wrappers__.get_total_supply.ecdsa_ptr": 199, - "__wrappers__.get_total_supply.pedersen_ptr": 197, - "__wrappers__.get_total_supply.range_check_ptr": 198, - "__wrappers__.get_total_supply.syscall_ptr": 196 - } - }, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - } - }, - "293": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 26, - "offset": 28 - }, - "reference_ids": { - "__wrappers__.get_total_supply.__calldata_actual_size": 201, - "__wrappers__.get_total_supply.__calldata_ptr": 200, - "__wrappers__.get_total_supply.ecdsa_ptr": 199, - "__wrappers__.get_total_supply.pedersen_ptr": 203, - "__wrappers__.get_total_supply.range_check_ptr": 204, - "__wrappers__.get_total_supply.ret_struct": 205, - "__wrappers__.get_total_supply.syscall_ptr": 202 - } - }, - "hints": [], - "inst": { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/c968b0a0274c4d4d05dd2024f19d5a639755cdd3a7dc35405733e09c8fe279a3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 106, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/c968b0a0274c4d4d05dd2024f19d5a639755cdd3a7dc35405733e09c8fe279a3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 91, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - } - }, - "294": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 26, - "offset": 29 - }, - "reference_ids": { - "__wrappers__.get_total_supply.__calldata_actual_size": 201, - "__wrappers__.get_total_supply.__calldata_ptr": 200, - "__wrappers__.get_total_supply.ecdsa_ptr": 199, - "__wrappers__.get_total_supply.pedersen_ptr": 203, - "__wrappers__.get_total_supply.range_check_ptr": 204, - "__wrappers__.get_total_supply.ret_struct": 205, - "__wrappers__.get_total_supply.syscall_ptr": 202 - } - }, - "hints": [], - "inst": { - "end_col": 107, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/c968b0a0274c4d4d05dd2024f19d5a639755cdd3a7dc35405733e09c8fe279a3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "296": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 26, - "offset": 36 - }, - "reference_ids": { - "__wrappers__.get_total_supply.__calldata_actual_size": 201, - "__wrappers__.get_total_supply.__calldata_ptr": 200, - "__wrappers__.get_total_supply.ecdsa_ptr": 199, - "__wrappers__.get_total_supply.pedersen_ptr": 203, - "__wrappers__.get_total_supply.range_check_ptr": 206, - "__wrappers__.get_total_supply.ret_struct": 205, - "__wrappers__.get_total_supply.retdata": 208, - "__wrappers__.get_total_supply.retdata_size": 207, - "__wrappers__.get_total_supply.syscall_ptr": 202 - } - }, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/c968b0a0274c4d4d05dd2024f19d5a639755cdd3a7dc35405733e09c8fe279a3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "297": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 26, - "offset": 37 - }, - "reference_ids": { - "__wrappers__.get_total_supply.__calldata_actual_size": 201, - "__wrappers__.get_total_supply.__calldata_ptr": 200, - "__wrappers__.get_total_supply.ecdsa_ptr": 199, - "__wrappers__.get_total_supply.pedersen_ptr": 203, - "__wrappers__.get_total_supply.range_check_ptr": 206, - "__wrappers__.get_total_supply.ret_struct": 205, - "__wrappers__.get_total_supply.retdata": 208, - "__wrappers__.get_total_supply.retdata_size": 207, - "__wrappers__.get_total_supply.syscall_ptr": 202 - } - }, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/c968b0a0274c4d4d05dd2024f19d5a639755cdd3a7dc35405733e09c8fe279a3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "298": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 26, - "offset": 38 - }, - "reference_ids": { - "__wrappers__.get_total_supply.__calldata_actual_size": 201, - "__wrappers__.get_total_supply.__calldata_ptr": 200, - "__wrappers__.get_total_supply.ecdsa_ptr": 199, - "__wrappers__.get_total_supply.pedersen_ptr": 203, - "__wrappers__.get_total_supply.range_check_ptr": 206, - "__wrappers__.get_total_supply.ret_struct": 205, - "__wrappers__.get_total_supply.retdata": 208, - "__wrappers__.get_total_supply.retdata_size": 207, - "__wrappers__.get_total_supply.syscall_ptr": 202 - } - }, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/c968b0a0274c4d4d05dd2024f19d5a639755cdd3a7dc35405733e09c8fe279a3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "299": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 26, - "offset": 39 - }, - "reference_ids": { - "__wrappers__.get_total_supply.__calldata_actual_size": 201, - "__wrappers__.get_total_supply.__calldata_ptr": 200, - "__wrappers__.get_total_supply.ecdsa_ptr": 199, - "__wrappers__.get_total_supply.pedersen_ptr": 203, - "__wrappers__.get_total_supply.range_check_ptr": 206, - "__wrappers__.get_total_supply.ret_struct": 205, - "__wrappers__.get_total_supply.retdata": 208, - "__wrappers__.get_total_supply.retdata_size": 207, - "__wrappers__.get_total_supply.syscall_ptr": 202 - } - }, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "300": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 26, - "offset": 40 - }, - "reference_ids": { - "__wrappers__.get_total_supply.__calldata_actual_size": 201, - "__wrappers__.get_total_supply.__calldata_ptr": 200, - "__wrappers__.get_total_supply.ecdsa_ptr": 199, - "__wrappers__.get_total_supply.pedersen_ptr": 203, - "__wrappers__.get_total_supply.range_check_ptr": 206, - "__wrappers__.get_total_supply.ret_struct": 205, - "__wrappers__.get_total_supply.retdata": 208, - "__wrappers__.get_total_supply.retdata_size": 207, - "__wrappers__.get_total_supply.syscall_ptr": 202 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/c968b0a0274c4d4d05dd2024f19d5a639755cdd3a7dc35405733e09c8fe279a3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "301": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 26, - "offset": 41 - }, - "reference_ids": { - "__wrappers__.get_total_supply.__calldata_actual_size": 201, - "__wrappers__.get_total_supply.__calldata_ptr": 200, - "__wrappers__.get_total_supply.ecdsa_ptr": 199, - "__wrappers__.get_total_supply.pedersen_ptr": 203, - "__wrappers__.get_total_supply.range_check_ptr": 206, - "__wrappers__.get_total_supply.ret_struct": 205, - "__wrappers__.get_total_supply.retdata": 208, - "__wrappers__.get_total_supply.retdata_size": 207, - "__wrappers__.get_total_supply.syscall_ptr": 202 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/c968b0a0274c4d4d05dd2024f19d5a639755cdd3a7dc35405733e09c8fe279a3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "302": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 26, - "offset": 42 - }, - "reference_ids": { - "__wrappers__.get_total_supply.__calldata_actual_size": 201, - "__wrappers__.get_total_supply.__calldata_ptr": 200, - "__wrappers__.get_total_supply.ecdsa_ptr": 199, - "__wrappers__.get_total_supply.pedersen_ptr": 203, - "__wrappers__.get_total_supply.range_check_ptr": 206, - "__wrappers__.get_total_supply.ret_struct": 205, - "__wrappers__.get_total_supply.retdata": 208, - "__wrappers__.get_total_supply.retdata_size": 207, - "__wrappers__.get_total_supply.syscall_ptr": 202 - } - }, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/get_total_supply/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 38, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 38 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "303": { - "accessible_scopes": ["__main__", "__main__", "__main__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 27, - "offset": 0 - }, - "reference_ids": { - "__main__.balance_of.pedersen_ptr": 211, - "__main__.balance_of.range_check_ptr": 212, - "__main__.balance_of.syscall_ptr": 210, - "__main__.balance_of.user": 209 - } - }, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 49, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 53, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 53 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 49 - } - }, - "304": { - "accessible_scopes": ["__main__", "__main__", "__main__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 27, - "offset": 1 - }, - "reference_ids": { - "__main__.balance_of.pedersen_ptr": 211, - "__main__.balance_of.range_check_ptr": 212, - "__main__.balance_of.syscall_ptr": 210, - "__main__.balance_of.user": 209 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 50, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 53, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 53 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 50 - } - }, - "305": { - "accessible_scopes": ["__main__", "__main__", "__main__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 27, - "offset": 2 - }, - "reference_ids": { - "__main__.balance_of.pedersen_ptr": 211, - "__main__.balance_of.range_check_ptr": 212, - "__main__.balance_of.syscall_ptr": 210, - "__main__.balance_of.user": 209 - } - }, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 51, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 53, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 53 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 51 - } - }, - "306": { - "accessible_scopes": ["__main__", "__main__", "__main__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 27, - "offset": 3 - }, - "reference_ids": { - "__main__.balance_of.pedersen_ptr": 211, - "__main__.balance_of.range_check_ptr": 212, - "__main__.balance_of.syscall_ptr": 210, - "__main__.balance_of.user": 209 - } - }, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 52, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 53, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 36, - "start_line": 53 - }, - "While expanding the reference 'user' in:" - ], - "start_col": 8, - "start_line": 52 - } - }, - "307": { - "accessible_scopes": ["__main__", "__main__", "__main__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 27, - "offset": 4 - }, - "reference_ids": { - "__main__.balance_of.pedersen_ptr": 211, - "__main__.balance_of.range_check_ptr": 212, - "__main__.balance_of.syscall_ptr": 210, - "__main__.balance_of.user": 209 - } - }, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 53, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 53 - } - }, - "309": { - "accessible_scopes": ["__main__", "__main__", "__main__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 27, - "offset": 61 - }, - "reference_ids": { - "__main__.balance_of.pedersen_ptr": 214, - "__main__.balance_of.range_check_ptr": 215, - "__main__.balance_of.res": 216, - "__main__.balance_of.syscall_ptr": 213, - "__main__.balance_of.user": 209 - } - }, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 54, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 54 - } - }, - "310": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balance_of_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 28, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.balance_of_encode_return.range_check_ptr": 218, - "__wrappers__.balance_of_encode_return.ret_struct": 217 - } - }, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/balance_of/683814fac544917c5860cd1fcfeda6f4e5582c66a8deb4e7335bff554e21a45a.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 17, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/balance_of/683814fac544917c5860cd1fcfeda6f4e5582c66a8deb4e7335bff554e21a45a.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "312": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balance_of_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 28, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.balance_of_encode_return.__return_value_ptr": 220, - "__wrappers__.balance_of_encode_return.__return_value_ptr_start": 219, - "__wrappers__.balance_of_encode_return.range_check_ptr": 218, - "__wrappers__.balance_of_encode_return.ret_struct": 217 - } - }, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/fee896b6d05b2e98056b5628baa6fbee0adfb8960f3fee9d79fd2f066956cc42.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 52, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 24, - "start_line": 52 - }, - "While handling return value 'res'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "313": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balance_of_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 28, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.balance_of_encode_return.__return_value_ptr": 221, - "__wrappers__.balance_of_encode_return.__return_value_ptr_start": 219, - "__wrappers__.balance_of_encode_return.range_check_ptr": 218, - "__wrappers__.balance_of_encode_return.ret_struct": 217 - } - }, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/fee896b6d05b2e98056b5628baa6fbee0adfb8960f3fee9d79fd2f066956cc42.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 52, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/balance_of/683814fac544917c5860cd1fcfeda6f4e5582c66a8deb4e7335bff554e21a45a.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 24, - "start_line": 52 - }, - "While handling return value 'res'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "315": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balance_of_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 28, - "offset": 2 - }, - "reference_ids": { - "__wrappers__.balance_of_encode_return.__return_value_ptr": 221, - "__wrappers__.balance_of_encode_return.__return_value_ptr_start": 219, - "__wrappers__.balance_of_encode_return.__temp13": 222, - "__wrappers__.balance_of_encode_return.range_check_ptr": 218, - "__wrappers__.balance_of_encode_return.ret_struct": 217 - } - }, - "hints": [], - "inst": { - "end_col": 87, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/balance_of/683814fac544917c5860cd1fcfeda6f4e5582c66a8deb4e7335bff554e21a45a.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/balance_of/683814fac544917c5860cd1fcfeda6f4e5582c66a8deb4e7335bff554e21a45a.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 48 - }, - "While handling return value of" - ], - "start_col": 72, - "start_line": 1 - } - }, - "316": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balance_of_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 28, - "offset": 3 - }, - "reference_ids": { - "__wrappers__.balance_of_encode_return.__return_value_ptr": 221, - "__wrappers__.balance_of_encode_return.__return_value_ptr_start": 219, - "__wrappers__.balance_of_encode_return.__temp13": 222, - "__wrappers__.balance_of_encode_return.range_check_ptr": 218, - "__wrappers__.balance_of_encode_return.ret_struct": 217 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/balance_of/683814fac544917c5860cd1fcfeda6f4e5582c66a8deb4e7335bff554e21a45a.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "317": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balance_of_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 28, - "offset": 4 - }, - "reference_ids": { - "__wrappers__.balance_of_encode_return.__return_value_ptr": 221, - "__wrappers__.balance_of_encode_return.__return_value_ptr_start": 219, - "__wrappers__.balance_of_encode_return.__temp13": 222, - "__wrappers__.balance_of_encode_return.range_check_ptr": 218, - "__wrappers__.balance_of_encode_return.ret_struct": 217 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/balance_of/683814fac544917c5860cd1fcfeda6f4e5582c66a8deb4e7335bff554e21a45a.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/balance_of/683814fac544917c5860cd1fcfeda6f4e5582c66a8deb4e7335bff554e21a45a.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 48 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "318": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balance_of_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 28, - "offset": 5 - }, - "reference_ids": { - "__wrappers__.balance_of_encode_return.__return_value_ptr": 221, - "__wrappers__.balance_of_encode_return.__return_value_ptr_start": 219, - "__wrappers__.balance_of_encode_return.__temp13": 222, - "__wrappers__.balance_of_encode_return.range_check_ptr": 218, - "__wrappers__.balance_of_encode_return.ret_struct": 217 - } - }, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/balance_of/683814fac544917c5860cd1fcfeda6f4e5582c66a8deb4e7335bff554e21a45a.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "319": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 224, - "__wrappers__.balance_of.range_check_ptr": 225, - "__wrappers__.balance_of.syscall_ptr": 223 - } - }, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/996831336aa683d58abab90a9e39f7f65bcd058e5d407684eb0adeb83cec2201.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 52, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/29637b66643568891912d1ed3f5b810e37fc6dff63d2db9fba473c1883482e6f.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While handling calldata of" - ], - "start_col": 22, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 48 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 8, - "start_line": 52 - }, - "While handling calldata argument 'user'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "321": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.__temp14": 231, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 224, - "__wrappers__.balance_of.range_check_ptr": 225, - "__wrappers__.balance_of.syscall_ptr": 223 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "322": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.__temp14": 231, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 224, - "__wrappers__.balance_of.range_check_ptr": 225, - "__wrappers__.balance_of.syscall_ptr": 223 - } - }, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 49, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/8879196e17a21df624b800e966c6906d5a9e1acacef5dc096ac4b35ceaef258c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "323": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 2 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.__temp14": 231, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 224, - "__wrappers__.balance_of.range_check_ptr": 225, - "__wrappers__.balance_of.syscall_ptr": 223 - } - }, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 50, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/8879196e17a21df624b800e966c6906d5a9e1acacef5dc096ac4b35ceaef258c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 50 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "324": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 3 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.__temp14": 231, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 224, - "__wrappers__.balance_of.range_check_ptr": 225, - "__wrappers__.balance_of.syscall_ptr": 223 - } - }, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 51, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/8879196e17a21df624b800e966c6906d5a9e1acacef5dc096ac4b35ceaef258c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "325": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 4 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.__temp14": 231, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 224, - "__wrappers__.balance_of.range_check_ptr": 225, - "__wrappers__.balance_of.syscall_ptr": 223 - } - }, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/996831336aa683d58abab90a9e39f7f65bcd058e5d407684eb0adeb83cec2201.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 52, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 142, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/8879196e17a21df624b800e966c6906d5a9e1acacef5dc096ac4b35ceaef258c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 123, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_user' in:" - ], - "start_col": 8, - "start_line": 52 - }, - "While handling calldata argument 'user'" - ], - "start_col": 27, - "start_line": 1 - } - }, - "326": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 5 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.__temp14": 231, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 224, - "__wrappers__.balance_of.range_check_ptr": 225, - "__wrappers__.balance_of.syscall_ptr": 223 - } - }, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - } - }, - "328": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 68 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.__temp14": 231, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 233, - "__wrappers__.balance_of.range_check_ptr": 234, - "__wrappers__.balance_of.ret_struct": 235, - "__wrappers__.balance_of.syscall_ptr": 232 - } - }, - "hints": [], - "inst": { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/8879196e17a21df624b800e966c6906d5a9e1acacef5dc096ac4b35ceaef258c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 100, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/balance_of/8879196e17a21df624b800e966c6906d5a9e1acacef5dc096ac4b35ceaef258c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 85, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - } - }, - "329": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 69 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.__temp14": 231, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 233, - "__wrappers__.balance_of.range_check_ptr": 234, - "__wrappers__.balance_of.ret_struct": 235, - "__wrappers__.balance_of.syscall_ptr": 232 - } - }, - "hints": [], - "inst": { - "end_col": 101, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/balance_of/8879196e17a21df624b800e966c6906d5a9e1acacef5dc096ac4b35ceaef258c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "331": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 76 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.__temp14": 231, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 233, - "__wrappers__.balance_of.range_check_ptr": 236, - "__wrappers__.balance_of.ret_struct": 235, - "__wrappers__.balance_of.retdata": 238, - "__wrappers__.balance_of.retdata_size": 237, - "__wrappers__.balance_of.syscall_ptr": 232 - } - }, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/8879196e17a21df624b800e966c6906d5a9e1acacef5dc096ac4b35ceaef258c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "332": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 77 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.__temp14": 231, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 233, - "__wrappers__.balance_of.range_check_ptr": 236, - "__wrappers__.balance_of.ret_struct": 235, - "__wrappers__.balance_of.retdata": 238, - "__wrappers__.balance_of.retdata_size": 237, - "__wrappers__.balance_of.syscall_ptr": 232 - } - }, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/8879196e17a21df624b800e966c6906d5a9e1acacef5dc096ac4b35ceaef258c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "333": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 78 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.__temp14": 231, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 233, - "__wrappers__.balance_of.range_check_ptr": 236, - "__wrappers__.balance_of.ret_struct": 235, - "__wrappers__.balance_of.retdata": 238, - "__wrappers__.balance_of.retdata_size": 237, - "__wrappers__.balance_of.syscall_ptr": 232 - } - }, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/balance_of/8879196e17a21df624b800e966c6906d5a9e1acacef5dc096ac4b35ceaef258c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "334": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 79 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.__temp14": 231, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 233, - "__wrappers__.balance_of.range_check_ptr": 236, - "__wrappers__.balance_of.ret_struct": 235, - "__wrappers__.balance_of.retdata": 238, - "__wrappers__.balance_of.retdata_size": 237, - "__wrappers__.balance_of.syscall_ptr": 232 - } - }, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "335": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 80 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.__temp14": 231, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 233, - "__wrappers__.balance_of.range_check_ptr": 236, - "__wrappers__.balance_of.ret_struct": 235, - "__wrappers__.balance_of.retdata": 238, - "__wrappers__.balance_of.retdata_size": 237, - "__wrappers__.balance_of.syscall_ptr": 232 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/balance_of/8879196e17a21df624b800e966c6906d5a9e1acacef5dc096ac4b35ceaef258c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "336": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 81 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.__temp14": 231, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 233, - "__wrappers__.balance_of.range_check_ptr": 236, - "__wrappers__.balance_of.ret_struct": 235, - "__wrappers__.balance_of.retdata": 238, - "__wrappers__.balance_of.retdata_size": 237, - "__wrappers__.balance_of.syscall_ptr": 232 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/balance_of/8879196e17a21df624b800e966c6906d5a9e1acacef5dc096ac4b35ceaef258c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "337": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.balance_of"], - "flow_tracking_data": { - "ap_tracking": { - "group": 29, - "offset": 82 - }, - "reference_ids": { - "__wrappers__.balance_of.__calldata_actual_size": 230, - "__wrappers__.balance_of.__calldata_arg_user": 228, - "__wrappers__.balance_of.__calldata_ptr": 229, - "__wrappers__.balance_of.__temp14": 231, - "__wrappers__.balance_of.ecdsa_ptr": 226, - "__wrappers__.balance_of.pedersen_ptr": 233, - "__wrappers__.balance_of.range_check_ptr": 236, - "__wrappers__.balance_of.ret_struct": 235, - "__wrappers__.balance_of.retdata": 238, - "__wrappers__.balance_of.retdata_size": 237, - "__wrappers__.balance_of.syscall_ptr": 232 - } - }, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balance_of/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 48, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 48 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "338": { - "accessible_scopes": ["__main__", "__main__", "__main__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 30, - "offset": 0 - }, - "reference_ids": { - "__main__.allowance.owner": 239, - "__main__.allowance.pedersen_ptr": 242, - "__main__.allowance.range_check_ptr": 243, - "__main__.allowance.spender": 240, - "__main__.allowance.syscall_ptr": 241 - } - }, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 59, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 63, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 63 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 14 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 59 - } - }, - "339": { - "accessible_scopes": ["__main__", "__main__", "__main__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 30, - "offset": 1 - }, - "reference_ids": { - "__main__.allowance.owner": 239, - "__main__.allowance.pedersen_ptr": 242, - "__main__.allowance.range_check_ptr": 243, - "__main__.allowance.spender": 240, - "__main__.allowance.syscall_ptr": 241 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 60, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 63, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 63 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 14 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 60 - } - }, - "340": { - "accessible_scopes": ["__main__", "__main__", "__main__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 30, - "offset": 2 - }, - "reference_ids": { - "__main__.allowance.owner": 239, - "__main__.allowance.pedersen_ptr": 242, - "__main__.allowance.range_check_ptr": 243, - "__main__.allowance.spender": 240, - "__main__.allowance.syscall_ptr": 241 - } - }, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 61, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 63, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 63 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 14 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 61 - } - }, - "341": { - "accessible_scopes": ["__main__", "__main__", "__main__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 30, - "offset": 3 - }, - "reference_ids": { - "__main__.allowance.owner": 239, - "__main__.allowance.pedersen_ptr": 242, - "__main__.allowance.range_check_ptr": 243, - "__main__.allowance.spender": 240, - "__main__.allowance.syscall_ptr": 241 - } - }, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 62, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 63, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 39, - "start_line": 63 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 8, - "start_line": 62 - } - }, - "342": { - "accessible_scopes": ["__main__", "__main__", "__main__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 30, - "offset": 4 - }, - "reference_ids": { - "__main__.allowance.owner": 239, - "__main__.allowance.pedersen_ptr": 242, - "__main__.allowance.range_check_ptr": 243, - "__main__.allowance.spender": 240, - "__main__.allowance.syscall_ptr": 241 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 62, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 63, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 54, - "start_line": 63 - }, - "While expanding the reference 'spender' in:" - ], - "start_col": 21, - "start_line": 62 - } - }, - "343": { - "accessible_scopes": ["__main__", "__main__", "__main__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 30, - "offset": 5 - }, - "reference_ids": { - "__main__.allowance.owner": 239, - "__main__.allowance.pedersen_ptr": 242, - "__main__.allowance.range_check_ptr": 243, - "__main__.allowance.spender": 240, - "__main__.allowance.syscall_ptr": 241 - } - }, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 63, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 63 - } - }, - "345": { - "accessible_scopes": ["__main__", "__main__", "__main__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 30, - "offset": 68 - }, - "reference_ids": { - "__main__.allowance.owner": 239, - "__main__.allowance.pedersen_ptr": 245, - "__main__.allowance.range_check_ptr": 246, - "__main__.allowance.res": 247, - "__main__.allowance.spender": 240, - "__main__.allowance.syscall_ptr": 244 - } - }, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 64, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 64 - } - }, - "346": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.allowance_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 31, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.allowance_encode_return.range_check_ptr": 249, - "__wrappers__.allowance_encode_return.ret_struct": 248 - } - }, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/allowance/731ff6b599ca59016c48bfe67f45f3e776e812152f572e318f7517cdd4eaa13a.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 17, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/allowance/731ff6b599ca59016c48bfe67f45f3e776e812152f572e318f7517cdd4eaa13a.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "348": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.allowance_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 31, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.allowance_encode_return.__return_value_ptr": 251, - "__wrappers__.allowance_encode_return.__return_value_ptr_start": 250, - "__wrappers__.allowance_encode_return.range_check_ptr": 249, - "__wrappers__.allowance_encode_return.ret_struct": 248 - } - }, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/fee896b6d05b2e98056b5628baa6fbee0adfb8960f3fee9d79fd2f066956cc42.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 62, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 40, - "start_line": 62 - }, - "While handling return value 'res'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "349": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.allowance_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 31, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.allowance_encode_return.__return_value_ptr": 252, - "__wrappers__.allowance_encode_return.__return_value_ptr_start": 250, - "__wrappers__.allowance_encode_return.range_check_ptr": 249, - "__wrappers__.allowance_encode_return.ret_struct": 248 - } - }, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/fee896b6d05b2e98056b5628baa6fbee0adfb8960f3fee9d79fd2f066956cc42.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 62, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/allowance/731ff6b599ca59016c48bfe67f45f3e776e812152f572e318f7517cdd4eaa13a.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 40, - "start_line": 62 - }, - "While handling return value 'res'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "351": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.allowance_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 31, - "offset": 2 - }, - "reference_ids": { - "__wrappers__.allowance_encode_return.__return_value_ptr": 252, - "__wrappers__.allowance_encode_return.__return_value_ptr_start": 250, - "__wrappers__.allowance_encode_return.__temp15": 253, - "__wrappers__.allowance_encode_return.range_check_ptr": 249, - "__wrappers__.allowance_encode_return.ret_struct": 248 - } - }, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/allowance/731ff6b599ca59016c48bfe67f45f3e776e812152f572e318f7517cdd4eaa13a.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/allowance/731ff6b599ca59016c48bfe67f45f3e776e812152f572e318f7517cdd4eaa13a.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 58 - }, - "While handling return value of" - ], - "start_col": 70, - "start_line": 1 - } - }, - "352": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.allowance_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 31, - "offset": 3 - }, - "reference_ids": { - "__wrappers__.allowance_encode_return.__return_value_ptr": 252, - "__wrappers__.allowance_encode_return.__return_value_ptr_start": 250, - "__wrappers__.allowance_encode_return.__temp15": 253, - "__wrappers__.allowance_encode_return.range_check_ptr": 249, - "__wrappers__.allowance_encode_return.ret_struct": 248 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/allowance/731ff6b599ca59016c48bfe67f45f3e776e812152f572e318f7517cdd4eaa13a.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "353": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.allowance_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 31, - "offset": 4 - }, - "reference_ids": { - "__wrappers__.allowance_encode_return.__return_value_ptr": 252, - "__wrappers__.allowance_encode_return.__return_value_ptr_start": 250, - "__wrappers__.allowance_encode_return.__temp15": 253, - "__wrappers__.allowance_encode_return.range_check_ptr": 249, - "__wrappers__.allowance_encode_return.ret_struct": 248 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/allowance/731ff6b599ca59016c48bfe67f45f3e776e812152f572e318f7517cdd4eaa13a.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/allowance/731ff6b599ca59016c48bfe67f45f3e776e812152f572e318f7517cdd4eaa13a.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 58 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "354": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.allowance_encode_return" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 31, - "offset": 5 - }, - "reference_ids": { - "__wrappers__.allowance_encode_return.__return_value_ptr": 252, - "__wrappers__.allowance_encode_return.__return_value_ptr_start": 250, - "__wrappers__.allowance_encode_return.__temp15": 253, - "__wrappers__.allowance_encode_return.range_check_ptr": 249, - "__wrappers__.allowance_encode_return.ret_struct": 248 - } - }, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/allowance/731ff6b599ca59016c48bfe67f45f3e776e812152f572e318f7517cdd4eaa13a.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "355": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 255, - "__wrappers__.allowance.range_check_ptr": 256, - "__wrappers__.allowance.syscall_ptr": 254 - } - }, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/f5eaaf70cb77231309fcb9fe064570b7d1dd9f798db7541c13146b187dbbc1d7.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 62, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/29637b66643568891912d1ed3f5b810e37fc6dff63d2db9fba473c1883482e6f.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While handling calldata of" - ], - "start_col": 22, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 58 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 21, - "start_line": 62 - }, - "While handling calldata argument 'spender'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "357": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 255, - "__wrappers__.allowance.range_check_ptr": 256, - "__wrappers__.allowance.syscall_ptr": 254 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "358": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 255, - "__wrappers__.allowance.range_check_ptr": 256, - "__wrappers__.allowance.syscall_ptr": 254 - } - }, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 59, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/fcc531d44c33ac611268df1da02b958151bfd9f816026d7d72465cdf332b83eb.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 59 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "359": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 2 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 255, - "__wrappers__.allowance.range_check_ptr": 256, - "__wrappers__.allowance.syscall_ptr": 254 - } - }, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 60, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/fcc531d44c33ac611268df1da02b958151bfd9f816026d7d72465cdf332b83eb.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 60 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "360": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 3 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 255, - "__wrappers__.allowance.range_check_ptr": 256, - "__wrappers__.allowance.syscall_ptr": 254 - } - }, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 61, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/fcc531d44c33ac611268df1da02b958151bfd9f816026d7d72465cdf332b83eb.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 61 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "361": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 4 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 255, - "__wrappers__.allowance.range_check_ptr": 256, - "__wrappers__.allowance.syscall_ptr": 254 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/a5022f1799ae188355eced7568bef585aa5b2f8cc40c3733c5cbf6371c6aa2b5.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 62, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 144, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/fcc531d44c33ac611268df1da02b958151bfd9f816026d7d72465cdf332b83eb.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 124, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_owner' in:" - ], - "start_col": 8, - "start_line": 62 - }, - "While handling calldata argument 'owner'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "362": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 5 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 255, - "__wrappers__.allowance.range_check_ptr": 256, - "__wrappers__.allowance.syscall_ptr": 254 - } - }, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/f5eaaf70cb77231309fcb9fe064570b7d1dd9f798db7541c13146b187dbbc1d7.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 62, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 176, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/fcc531d44c33ac611268df1da02b958151bfd9f816026d7d72465cdf332b83eb.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 154, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_spender' in:" - ], - "start_col": 21, - "start_line": 62 - }, - "While handling calldata argument 'spender'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "363": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 6 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 255, - "__wrappers__.allowance.range_check_ptr": 256, - "__wrappers__.allowance.syscall_ptr": 254 - } - }, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - } - }, - "365": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 76 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 266, - "__wrappers__.allowance.range_check_ptr": 267, - "__wrappers__.allowance.ret_struct": 268, - "__wrappers__.allowance.syscall_ptr": 265 - } - }, - "hints": [], - "inst": { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/fcc531d44c33ac611268df1da02b958151bfd9f816026d7d72465cdf332b83eb.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 99, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/allowance/fcc531d44c33ac611268df1da02b958151bfd9f816026d7d72465cdf332b83eb.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 84, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - } - }, - "366": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 77 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 266, - "__wrappers__.allowance.range_check_ptr": 267, - "__wrappers__.allowance.ret_struct": 268, - "__wrappers__.allowance.syscall_ptr": 265 - } - }, - "hints": [], - "inst": { - "end_col": 100, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/allowance/fcc531d44c33ac611268df1da02b958151bfd9f816026d7d72465cdf332b83eb.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "368": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 84 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 266, - "__wrappers__.allowance.range_check_ptr": 269, - "__wrappers__.allowance.ret_struct": 268, - "__wrappers__.allowance.retdata": 271, - "__wrappers__.allowance.retdata_size": 270, - "__wrappers__.allowance.syscall_ptr": 265 - } - }, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/fcc531d44c33ac611268df1da02b958151bfd9f816026d7d72465cdf332b83eb.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "369": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 85 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 266, - "__wrappers__.allowance.range_check_ptr": 269, - "__wrappers__.allowance.ret_struct": 268, - "__wrappers__.allowance.retdata": 271, - "__wrappers__.allowance.retdata_size": 270, - "__wrappers__.allowance.syscall_ptr": 265 - } - }, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/fcc531d44c33ac611268df1da02b958151bfd9f816026d7d72465cdf332b83eb.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "370": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 86 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 266, - "__wrappers__.allowance.range_check_ptr": 269, - "__wrappers__.allowance.ret_struct": 268, - "__wrappers__.allowance.retdata": 271, - "__wrappers__.allowance.retdata_size": 270, - "__wrappers__.allowance.syscall_ptr": 265 - } - }, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/allowance/fcc531d44c33ac611268df1da02b958151bfd9f816026d7d72465cdf332b83eb.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "371": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 87 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 266, - "__wrappers__.allowance.range_check_ptr": 269, - "__wrappers__.allowance.ret_struct": 268, - "__wrappers__.allowance.retdata": 271, - "__wrappers__.allowance.retdata_size": 270, - "__wrappers__.allowance.syscall_ptr": 265 - } - }, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "372": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 88 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 266, - "__wrappers__.allowance.range_check_ptr": 269, - "__wrappers__.allowance.ret_struct": 268, - "__wrappers__.allowance.retdata": 271, - "__wrappers__.allowance.retdata_size": 270, - "__wrappers__.allowance.syscall_ptr": 265 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/allowance/fcc531d44c33ac611268df1da02b958151bfd9f816026d7d72465cdf332b83eb.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "373": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 89 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 266, - "__wrappers__.allowance.range_check_ptr": 269, - "__wrappers__.allowance.ret_struct": 268, - "__wrappers__.allowance.retdata": 271, - "__wrappers__.allowance.retdata_size": 270, - "__wrappers__.allowance.syscall_ptr": 265 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/allowance/fcc531d44c33ac611268df1da02b958151bfd9f816026d7d72465cdf332b83eb.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "374": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.allowance"], - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 90 - }, - "reference_ids": { - "__wrappers__.allowance.__calldata_actual_size": 263, - "__wrappers__.allowance.__calldata_arg_owner": 259, - "__wrappers__.allowance.__calldata_arg_spender": 261, - "__wrappers__.allowance.__calldata_ptr": 262, - "__wrappers__.allowance.__temp16": 264, - "__wrappers__.allowance.ecdsa_ptr": 257, - "__wrappers__.allowance.pedersen_ptr": 266, - "__wrappers__.allowance.range_check_ptr": 269, - "__wrappers__.allowance.ret_struct": 268, - "__wrappers__.allowance.retdata": 271, - "__wrappers__.allowance.retdata_size": 270, - "__wrappers__.allowance.syscall_ptr": 265 - } - }, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/allowance/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 58 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "375": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 0 - }, - "reference_ids": { - "__main__.initialize.pedersen_ptr": 273, - "__main__.initialize.range_check_ptr": 274, - "__main__.initialize.syscall_ptr": 272 - } - }, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 73, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 77, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 26, - "start_line": 77 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 73 - } - }, - "376": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 1 - }, - "reference_ids": { - "__main__.initialize.pedersen_ptr": 273, - "__main__.initialize.range_check_ptr": 274, - "__main__.initialize.syscall_ptr": 272 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 74, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 77, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 26, - "start_line": 77 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 74 - } - }, - "377": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 2 - }, - "reference_ids": { - "__main__.initialize.pedersen_ptr": 273, - "__main__.initialize.range_check_ptr": 274, - "__main__.initialize.syscall_ptr": 272 - } - }, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 75, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 77, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 26, - "start_line": 77 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 75 - } - }, - "378": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 3 - }, - "reference_ids": { - "__main__.initialize.pedersen_ptr": 273, - "__main__.initialize.range_check_ptr": 274, - "__main__.initialize.syscall_ptr": 272 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 77, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 26, - "start_line": 77 - } - }, - "380": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 23 - }, - "reference_ids": { - "__main__.initialize._initialized": 278, - "__main__.initialize.pedersen_ptr": 276, - "__main__.initialize.range_check_ptr": 277, - "__main__.initialize.syscall_ptr": 275 - } - }, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 78, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 78 - } - }, - "382": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 23 - }, - "reference_ids": { - "__main__.initialize._initialized": 278, - "__main__.initialize.pedersen_ptr": 276, - "__main__.initialize.range_check_ptr": 277, - "__main__.initialize.syscall_ptr": 275 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 77, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 79, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 79 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 19 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 77 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "383": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 24 - }, - "reference_ids": { - "__main__.initialize._initialized": 278, - "__main__.initialize.pedersen_ptr": 276, - "__main__.initialize.range_check_ptr": 277, - "__main__.initialize.syscall_ptr": 275 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 77, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 79, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 79 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 26, - "start_line": 77 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - } - }, - "384": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 25 - }, - "reference_ids": { - "__main__.initialize._initialized": 278, - "__main__.initialize.pedersen_ptr": 276, - "__main__.initialize.range_check_ptr": 277, - "__main__.initialize.syscall_ptr": 275 - } - }, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 77, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 79, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 79 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 26, - "start_line": 77 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - } - }, - "385": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 26 - }, - "reference_ids": { - "__main__.initialize._initialized": 278, - "__main__.initialize.pedersen_ptr": 276, - "__main__.initialize.range_check_ptr": 277, - "__main__.initialize.syscall_ptr": 275 - } - }, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 79, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 23, - "start_line": 79 - } - }, - "387": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 27 - }, - "reference_ids": { - "__main__.initialize._initialized": 278, - "__main__.initialize.pedersen_ptr": 276, - "__main__.initialize.range_check_ptr": 277, - "__main__.initialize.syscall_ptr": 275 - } - }, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 79, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 79 - } - }, - "389": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 45 - }, - "reference_ids": { - "__main__.initialize._initialized": 278, - "__main__.initialize.pedersen_ptr": 280, - "__main__.initialize.range_check_ptr": 281, - "__main__.initialize.syscall_ptr": 279 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 79, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 93, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 81, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 20, - "start_line": 81 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 93 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 79 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 19 - } - }, - "390": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 46 - }, - "reference_ids": { - "__main__.initialize._initialized": 278, - "__main__.initialize.pedersen_ptr": 280, - "__main__.initialize.range_check_ptr": 281, - "__main__.initialize.syscall_ptr": 279 - } - }, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 81, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 20, - "start_line": 81 - } - }, - "392": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 51 - }, - "reference_ids": { - "__main__.initialize._initialized": 278, - "__main__.initialize.pedersen_ptr": 280, - "__main__.initialize.range_check_ptr": 281, - "__main__.initialize.sender": 283, - "__main__.initialize.syscall_ptr": 282 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 93, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 81, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 87, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 82, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 82 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 87 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 81 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 93 - } - }, - "393": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 52 - }, - "reference_ids": { - "__main__.initialize._initialized": 278, - "__main__.initialize.pedersen_ptr": 280, - "__main__.initialize.range_check_ptr": 281, - "__main__.initialize.sender": 283, - "__main__.initialize.syscall_ptr": 282 - } - }, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 79, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 88, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 82, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 82 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 88 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 79 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - } - }, - "394": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 53 - }, - "reference_ids": { - "__main__.initialize._initialized": 278, - "__main__.initialize.pedersen_ptr": 280, - "__main__.initialize.range_check_ptr": 281, - "__main__.initialize.sender": 283, - "__main__.initialize.syscall_ptr": 282 - } - }, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 79, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 89, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 82, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 82 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 79 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 19 - } - }, - "395": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 54 - }, - "reference_ids": { - "__main__.initialize._initialized": 278, - "__main__.initialize.pedersen_ptr": 280, - "__main__.initialize.range_check_ptr": 281, - "__main__.initialize.sender": 283, - "__main__.initialize.syscall_ptr": 282 - } - }, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 81, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 82, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 11, - "start_line": 82 - }, - "While expanding the reference 'sender' in:" - ], - "start_col": 10, - "start_line": 81 - } - }, - "396": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 55 - }, - "reference_ids": { - "__main__.initialize._initialized": 278, - "__main__.initialize.pedersen_ptr": 280, - "__main__.initialize.range_check_ptr": 281, - "__main__.initialize.sender": 283, - "__main__.initialize.syscall_ptr": 282 - } - }, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 82, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 19, - "start_line": 82 - } - }, - "398": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 33, - "offset": 56 - }, - "reference_ids": { - "__main__.initialize._initialized": 278, - "__main__.initialize.pedersen_ptr": 280, - "__main__.initialize.range_check_ptr": 281, - "__main__.initialize.sender": 283, - "__main__.initialize.syscall_ptr": 282 - } - }, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 82, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 82 - } - }, - "400": { - "accessible_scopes": ["__main__", "__main__", "__main__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 34, - "offset": 0 - }, - "reference_ids": { - "__main__.initialize._initialized": 278, - "__main__.initialize.pedersen_ptr": 285, - "__main__.initialize.range_check_ptr": 286, - "__main__.initialize.sender": 283, - "__main__.initialize.syscall_ptr": 284 - } - }, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 83, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 83 - } - }, - "401": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 35, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.initialize.__calldata_actual_size": 292, - "__wrappers__.initialize.__calldata_ptr": 291, - "__wrappers__.initialize.ecdsa_ptr": 290, - "__wrappers__.initialize.pedersen_ptr": 288, - "__wrappers__.initialize.range_check_ptr": 289, - "__wrappers__.initialize.syscall_ptr": 287 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 72 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "402": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 35, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.initialize.__calldata_actual_size": 292, - "__wrappers__.initialize.__calldata_ptr": 291, - "__wrappers__.initialize.ecdsa_ptr": 290, - "__wrappers__.initialize.pedersen_ptr": 288, - "__wrappers__.initialize.range_check_ptr": 289, - "__wrappers__.initialize.syscall_ptr": 287 - } - }, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 73, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/65afca6042dd7c8a6e82d579494fa4fa955e0d1232b8c498dd8d1f04bd61bada.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 73 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "403": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 35, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.initialize.__calldata_actual_size": 292, - "__wrappers__.initialize.__calldata_ptr": 291, - "__wrappers__.initialize.ecdsa_ptr": 290, - "__wrappers__.initialize.pedersen_ptr": 288, - "__wrappers__.initialize.range_check_ptr": 289, - "__wrappers__.initialize.syscall_ptr": 287 - } - }, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 74, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/65afca6042dd7c8a6e82d579494fa4fa955e0d1232b8c498dd8d1f04bd61bada.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "404": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 35, - "offset": 2 - }, - "reference_ids": { - "__wrappers__.initialize.__calldata_actual_size": 292, - "__wrappers__.initialize.__calldata_ptr": 291, - "__wrappers__.initialize.ecdsa_ptr": 290, - "__wrappers__.initialize.pedersen_ptr": 288, - "__wrappers__.initialize.range_check_ptr": 289, - "__wrappers__.initialize.syscall_ptr": 287 - } - }, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 75, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/65afca6042dd7c8a6e82d579494fa4fa955e0d1232b8c498dd8d1f04bd61bada.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "405": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 35, - "offset": 3 - }, - "reference_ids": { - "__wrappers__.initialize.__calldata_actual_size": 292, - "__wrappers__.initialize.__calldata_ptr": 291, - "__wrappers__.initialize.ecdsa_ptr": 290, - "__wrappers__.initialize.pedersen_ptr": 288, - "__wrappers__.initialize.range_check_ptr": 289, - "__wrappers__.initialize.syscall_ptr": 287 - } - }, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 72 - } - }, - "407": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 36, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.initialize.__calldata_actual_size": 292, - "__wrappers__.initialize.__calldata_ptr": 291, - "__wrappers__.initialize.ecdsa_ptr": 290, - "__wrappers__.initialize.pedersen_ptr": 294, - "__wrappers__.initialize.range_check_ptr": 295, - "__wrappers__.initialize.ret_struct": 296, - "__wrappers__.initialize.syscall_ptr": 293 - } - }, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/initialize/65afca6042dd7c8a6e82d579494fa4fa955e0d1232b8c498dd8d1f04bd61bada.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/initialize/65afca6042dd7c8a6e82d579494fa4fa955e0d1232b8c498dd8d1f04bd61bada.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "409": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 36, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.initialize.__calldata_actual_size": 292, - "__wrappers__.initialize.__calldata_ptr": 291, - "__wrappers__.initialize.ecdsa_ptr": 290, - "__wrappers__.initialize.pedersen_ptr": 294, - "__wrappers__.initialize.range_check_ptr": 295, - "__wrappers__.initialize.ret_struct": 296, - "__wrappers__.initialize.retdata": 297, - "__wrappers__.initialize.retdata_size": 298, - "__wrappers__.initialize.syscall_ptr": 293 - } - }, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/65afca6042dd7c8a6e82d579494fa4fa955e0d1232b8c498dd8d1f04bd61bada.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "410": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 36, - "offset": 2 - }, - "reference_ids": { - "__wrappers__.initialize.__calldata_actual_size": 292, - "__wrappers__.initialize.__calldata_ptr": 291, - "__wrappers__.initialize.ecdsa_ptr": 290, - "__wrappers__.initialize.pedersen_ptr": 294, - "__wrappers__.initialize.range_check_ptr": 295, - "__wrappers__.initialize.ret_struct": 296, - "__wrappers__.initialize.retdata": 297, - "__wrappers__.initialize.retdata_size": 298, - "__wrappers__.initialize.syscall_ptr": 293 - } - }, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/65afca6042dd7c8a6e82d579494fa4fa955e0d1232b8c498dd8d1f04bd61bada.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "411": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 36, - "offset": 3 - }, - "reference_ids": { - "__wrappers__.initialize.__calldata_actual_size": 292, - "__wrappers__.initialize.__calldata_ptr": 291, - "__wrappers__.initialize.ecdsa_ptr": 290, - "__wrappers__.initialize.pedersen_ptr": 294, - "__wrappers__.initialize.range_check_ptr": 295, - "__wrappers__.initialize.ret_struct": 296, - "__wrappers__.initialize.retdata": 297, - "__wrappers__.initialize.retdata_size": 298, - "__wrappers__.initialize.syscall_ptr": 293 - } - }, - "hints": [], - "inst": { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/65afca6042dd7c8a6e82d579494fa4fa955e0d1232b8c498dd8d1f04bd61bada.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - } - }, - "412": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 36, - "offset": 4 - }, - "reference_ids": { - "__wrappers__.initialize.__calldata_actual_size": 292, - "__wrappers__.initialize.__calldata_ptr": 291, - "__wrappers__.initialize.ecdsa_ptr": 290, - "__wrappers__.initialize.pedersen_ptr": 294, - "__wrappers__.initialize.range_check_ptr": 295, - "__wrappers__.initialize.ret_struct": 296, - "__wrappers__.initialize.retdata": 297, - "__wrappers__.initialize.retdata_size": 298, - "__wrappers__.initialize.syscall_ptr": 293 - } - }, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "413": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 36, - "offset": 5 - }, - "reference_ids": { - "__wrappers__.initialize.__calldata_actual_size": 292, - "__wrappers__.initialize.__calldata_ptr": 291, - "__wrappers__.initialize.ecdsa_ptr": 290, - "__wrappers__.initialize.pedersen_ptr": 294, - "__wrappers__.initialize.range_check_ptr": 295, - "__wrappers__.initialize.ret_struct": 296, - "__wrappers__.initialize.retdata": 297, - "__wrappers__.initialize.retdata_size": 298, - "__wrappers__.initialize.syscall_ptr": 293 - } - }, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/initialize/65afca6042dd7c8a6e82d579494fa4fa955e0d1232b8c498dd8d1f04bd61bada.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "415": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 36, - "offset": 6 - }, - "reference_ids": { - "__wrappers__.initialize.__calldata_actual_size": 292, - "__wrappers__.initialize.__calldata_ptr": 291, - "__wrappers__.initialize.ecdsa_ptr": 290, - "__wrappers__.initialize.pedersen_ptr": 294, - "__wrappers__.initialize.range_check_ptr": 295, - "__wrappers__.initialize.ret_struct": 296, - "__wrappers__.initialize.retdata": 297, - "__wrappers__.initialize.retdata_size": 298, - "__wrappers__.initialize.syscall_ptr": 293 - } - }, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/initialize/65afca6042dd7c8a6e82d579494fa4fa955e0d1232b8c498dd8d1f04bd61bada.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "416": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.initialize"], - "flow_tracking_data": { - "ap_tracking": { - "group": 36, - "offset": 7 - }, - "reference_ids": { - "__wrappers__.initialize.__calldata_actual_size": 292, - "__wrappers__.initialize.__calldata_ptr": 291, - "__wrappers__.initialize.ecdsa_ptr": 290, - "__wrappers__.initialize.pedersen_ptr": 294, - "__wrappers__.initialize.range_check_ptr": 295, - "__wrappers__.initialize.ret_struct": 296, - "__wrappers__.initialize.retdata": 297, - "__wrappers__.initialize.retdata_size": 298, - "__wrappers__.initialize.syscall_ptr": 293 - } - }, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 72 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "417": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 0 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 302, - "__main__._mint.range_check_ptr": 303, - "__main__._mint.recipient": 299, - "__main__._mint.syscall_ptr": 301 - } - }, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 87, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 91, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 91 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 87 - } - }, - "418": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 1 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 302, - "__main__._mint.range_check_ptr": 303, - "__main__._mint.recipient": 299, - "__main__._mint.syscall_ptr": 301 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 88, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 91, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 91 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 88 - } - }, - "419": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 2 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 302, - "__main__._mint.range_check_ptr": 303, - "__main__._mint.recipient": 299, - "__main__._mint.syscall_ptr": 301 - } - }, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 89, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 91, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 91 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 89 - } - }, - "420": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 3 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 302, - "__main__._mint.range_check_ptr": 303, - "__main__._mint.recipient": 299, - "__main__._mint.syscall_ptr": 301 - } - }, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 90, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 91, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 36, - "start_line": 91 - }, - "While expanding the reference 'recipient' in:" - ], - "start_col": 8, - "start_line": 90 - } - }, - "421": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 4 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 302, - "__main__._mint.range_check_ptr": 303, - "__main__._mint.recipient": 299, - "__main__._mint.syscall_ptr": 301 - } - }, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 91, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 91 - } - }, - "423": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 61 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 305, - "__main__._mint.range_check_ptr": 306, - "__main__._mint.recipient": 299, - "__main__._mint.res": 307, - "__main__._mint.syscall_ptr": 304 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 91, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 92, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 92 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 20 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 91 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "424": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 62 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 305, - "__main__._mint.range_check_ptr": 306, - "__main__._mint.recipient": 299, - "__main__._mint.res": 307, - "__main__._mint.syscall_ptr": 304 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 91, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 92, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 92 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 20 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 17, - "start_line": 91 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - } - }, - "425": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 63 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 305, - "__main__._mint.range_check_ptr": 306, - "__main__._mint.recipient": 299, - "__main__._mint.res": 307, - "__main__._mint.syscall_ptr": 304 - } - }, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 91, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 92, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 92 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 20 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 91 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - } - }, - "426": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 64 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 305, - "__main__._mint.range_check_ptr": 306, - "__main__._mint.recipient": 299, - "__main__._mint.res": 307, - "__main__._mint.syscall_ptr": 304 - } - }, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 90, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 92, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 20, - "start_line": 92 - }, - "While expanding the reference 'recipient' in:" - ], - "start_col": 8, - "start_line": 90 - } - }, - "427": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 65 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 305, - "__main__._mint.range_check_ptr": 306, - "__main__._mint.recipient": 299, - "__main__._mint.res": 307, - "__main__._mint.syscall_ptr": 304 - } - }, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 92, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 31, - "start_line": 92 - } - }, - "428": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 66 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 305, - "__main__._mint.range_check_ptr": 306, - "__main__._mint.recipient": 299, - "__main__._mint.res": 307, - "__main__._mint.syscall_ptr": 304 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 92, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 92 - } - }, - "430": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 121 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 309, - "__main__._mint.range_check_ptr": 310, - "__main__._mint.recipient": 299, - "__main__._mint.res": 307, - "__main__._mint.syscall_ptr": 308 - } - }, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 94, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 20, - "start_line": 94 - } - }, - "432": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 141 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 312, - "__main__._mint.range_check_ptr": 313, - "__main__._mint.recipient": 299, - "__main__._mint.res": 307, - "__main__._mint.supply": 314, - "__main__._mint.syscall_ptr": 311 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 94, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 95, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 95 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 19 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 94 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "433": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 142 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 312, - "__main__._mint.range_check_ptr": 313, - "__main__._mint.recipient": 299, - "__main__._mint.res": 307, - "__main__._mint.supply": 314, - "__main__._mint.syscall_ptr": 311 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 94, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 95, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 95 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 20, - "start_line": 94 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - } - }, - "434": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 143 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 312, - "__main__._mint.range_check_ptr": 313, - "__main__._mint.recipient": 299, - "__main__._mint.res": 307, - "__main__._mint.supply": 314, - "__main__._mint.syscall_ptr": 311 - } - }, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 94, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/total_supply/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 95, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 95 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 94 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - } - }, - "435": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 144 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 312, - "__main__._mint.range_check_ptr": 313, - "__main__._mint.recipient": 299, - "__main__._mint.res": 307, - "__main__._mint.supply": 314, - "__main__._mint.syscall_ptr": 311 - } - }, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 95, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 24, - "start_line": 95 - } - }, - "436": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 145 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 312, - "__main__._mint.range_check_ptr": 313, - "__main__._mint.recipient": 299, - "__main__._mint.res": 307, - "__main__._mint.supply": 314, - "__main__._mint.syscall_ptr": 311 - } - }, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 95, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 95 - } - }, - "438": { - "accessible_scopes": ["__main__", "__main__._mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 163 - }, - "reference_ids": { - "__main__._mint.amount": 300, - "__main__._mint.pedersen_ptr": 316, - "__main__._mint.range_check_ptr": 317, - "__main__._mint.recipient": 299, - "__main__._mint.res": 307, - "__main__._mint.supply": 314, - "__main__._mint.syscall_ptr": 315 - } - }, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 96, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 96 - } - }, - "439": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 0 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 322, - "__main__._transfer.range_check_ptr": 323, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.syscall_ptr": 321 - } - }, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 100, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 105, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 28, - "start_line": 105 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 100 - } - }, - "440": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 1 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 322, - "__main__._transfer.range_check_ptr": 323, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.syscall_ptr": 321 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 101, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 105, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 28, - "start_line": 105 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 101 - } - }, - "441": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 2 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 322, - "__main__._transfer.range_check_ptr": 323, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.syscall_ptr": 321 - } - }, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 102, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 105, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 28, - "start_line": 105 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 102 - } - }, - "442": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 3 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 322, - "__main__._transfer.range_check_ptr": 323, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.syscall_ptr": 321 - } - }, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 103, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 105, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 47, - "start_line": 105 - }, - "While expanding the reference 'sender' in:" - ], - "start_col": 8, - "start_line": 103 - } - }, - "443": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 4 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 322, - "__main__._transfer.range_check_ptr": 323, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.syscall_ptr": 321 - } - }, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 105, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 28, - "start_line": 105 - } - }, - "445": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 61 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 325, - "__main__._transfer.range_check_ptr": 326, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 324 - } - }, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 105, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 65, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 106, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 106 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 19, - "start_line": 65 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 105 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - } - }, - "446": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 62 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 325, - "__main__._transfer.range_check_ptr": 326, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 324 - } - }, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 103, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 106, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 18, - "start_line": 106 - }, - "While expanding the reference 'amount' in:" - ], - "start_col": 39, - "start_line": 103 - } - }, - "447": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 63 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 325, - "__main__._transfer.range_check_ptr": 326, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 324 - } - }, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 105, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 106, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 26, - "start_line": 106 - }, - "While expanding the reference 'sender_balance' in:" - ], - "start_col": 10, - "start_line": 105 - } - }, - "448": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 64 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 325, - "__main__._transfer.range_check_ptr": 326, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 324 - } - }, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 106, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 106 - } - }, - "450": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 80 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 325, - "__main__._transfer.range_check_ptr": 328, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 324 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 105, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 109, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 109 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 20 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 105 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "451": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 81 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 325, - "__main__._transfer.range_check_ptr": 328, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 324 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 105, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 109, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 109 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 20 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 28, - "start_line": 105 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - } - }, - "452": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 82 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 325, - "__main__._transfer.range_check_ptr": 328, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 324 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 65, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 106, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 109, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 109 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 20 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 106 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 19, - "start_line": 65 - } - }, - "453": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 83 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 325, - "__main__._transfer.range_check_ptr": 328, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 324 - } - }, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 103, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 109, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 20, - "start_line": 109 - }, - "While expanding the reference 'sender' in:" - ], - "start_col": 8, - "start_line": 103 - } - }, - "454": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 84 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 325, - "__main__._transfer.range_check_ptr": 328, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 324 - } - }, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 109, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 28, - "start_line": 109 - } - }, - "455": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 85 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 325, - "__main__._transfer.range_check_ptr": 328, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 324 - } - }, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 109, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 109 - } - }, - "457": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 140 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 330, - "__main__._transfer.range_check_ptr": 331, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 329 - } - }, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 103, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 112, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 36, - "start_line": 112 - }, - "While expanding the reference 'recipient' in:" - ], - "start_col": 22, - "start_line": 103 - } - }, - "458": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 141 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 330, - "__main__._transfer.range_check_ptr": 331, - "__main__._transfer.recipient": 319, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 329 - } - }, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 112, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 17, - "start_line": 112 - } - }, - "460": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 198 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 333, - "__main__._transfer.range_check_ptr": 334, - "__main__._transfer.recipient": 319, - "__main__._transfer.res": 335, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 332 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 112, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 113, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 113 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 20 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 112 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "461": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 199 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 333, - "__main__._transfer.range_check_ptr": 334, - "__main__._transfer.recipient": 319, - "__main__._transfer.res": 335, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 332 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 112, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 113, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 113 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 20 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 17, - "start_line": 112 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - } - }, - "462": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 200 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 333, - "__main__._transfer.range_check_ptr": 334, - "__main__._transfer.recipient": 319, - "__main__._transfer.res": 335, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 332 - } - }, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 112, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 113, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 113 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 20 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 112 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 13 - } - }, - "463": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 201 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 333, - "__main__._transfer.range_check_ptr": 334, - "__main__._transfer.recipient": 319, - "__main__._transfer.res": 335, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 332 - } - }, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 103, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 113, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 20, - "start_line": 113 - }, - "While expanding the reference 'recipient' in:" - ], - "start_col": 22, - "start_line": 103 - } - }, - "464": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 202 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 333, - "__main__._transfer.range_check_ptr": 334, - "__main__._transfer.recipient": 319, - "__main__._transfer.res": 335, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 332 - } - }, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 113, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 31, - "start_line": 113 - } - }, - "465": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 203 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 333, - "__main__._transfer.range_check_ptr": 334, - "__main__._transfer.recipient": 319, - "__main__._transfer.res": 335, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 332 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 113, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 113 - } - }, - "467": { - "accessible_scopes": ["__main__", "__main__._transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 258 - }, - "reference_ids": { - "__main__._transfer.amount": 320, - "__main__._transfer.pedersen_ptr": 337, - "__main__._transfer.range_check_ptr": 338, - "__main__._transfer.recipient": 319, - "__main__._transfer.res": 335, - "__main__._transfer.sender": 318, - "__main__._transfer.sender_balance": 327, - "__main__._transfer.syscall_ptr": 336 - } - }, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 114, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 114 - } - }, - "468": { - "accessible_scopes": ["__main__", "__main__", "__main__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 39, - "offset": 0 - }, - "reference_ids": { - "__main__.mint.amount": 340, - "__main__.mint.pedersen_ptr": 342, - "__main__.mint.range_check_ptr": 343, - "__main__.mint.recipient": 339, - "__main__.mint.syscall_ptr": 341 - } - }, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 119, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 87, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 123, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 123 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 87 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 119 - } - }, - "469": { - "accessible_scopes": ["__main__", "__main__", "__main__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 39, - "offset": 1 - }, - "reference_ids": { - "__main__.mint.amount": 340, - "__main__.mint.pedersen_ptr": 342, - "__main__.mint.range_check_ptr": 343, - "__main__.mint.recipient": 339, - "__main__.mint.syscall_ptr": 341 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 120, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 88, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 123, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 123 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 88 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 120 - } - }, - "470": { - "accessible_scopes": ["__main__", "__main__", "__main__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 39, - "offset": 2 - }, - "reference_ids": { - "__main__.mint.amount": 340, - "__main__.mint.pedersen_ptr": 342, - "__main__.mint.range_check_ptr": 343, - "__main__.mint.recipient": 339, - "__main__.mint.syscall_ptr": 341 - } - }, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 121, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 89, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 123, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 123 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 121 - } - }, - "471": { - "accessible_scopes": ["__main__", "__main__", "__main__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 39, - "offset": 3 - }, - "reference_ids": { - "__main__.mint.amount": 340, - "__main__.mint.pedersen_ptr": 342, - "__main__.mint.range_check_ptr": 343, - "__main__.mint.recipient": 339, - "__main__.mint.syscall_ptr": 341 - } - }, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 122, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 123, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 11, - "start_line": 123 - }, - "While expanding the reference 'recipient' in:" - ], - "start_col": 8, - "start_line": 122 - } - }, - "472": { - "accessible_scopes": ["__main__", "__main__", "__main__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 39, - "offset": 4 - }, - "reference_ids": { - "__main__.mint.amount": 340, - "__main__.mint.pedersen_ptr": 342, - "__main__.mint.range_check_ptr": 343, - "__main__.mint.recipient": 339, - "__main__.mint.syscall_ptr": 341 - } - }, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 122, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 123, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 22, - "start_line": 123 - }, - "While expanding the reference 'amount' in:" - ], - "start_col": 25, - "start_line": 122 - } - }, - "473": { - "accessible_scopes": ["__main__", "__main__", "__main__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 39, - "offset": 5 - }, - "reference_ids": { - "__main__.mint.amount": 340, - "__main__.mint.pedersen_ptr": 342, - "__main__.mint.range_check_ptr": 343, - "__main__.mint.recipient": 339, - "__main__.mint.syscall_ptr": 341 - } - }, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 123, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 123 - } - }, - "475": { - "accessible_scopes": ["__main__", "__main__", "__main__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 39, - "offset": 170 - }, - "reference_ids": { - "__main__.mint.amount": 340, - "__main__.mint.pedersen_ptr": 345, - "__main__.mint.range_check_ptr": 346, - "__main__.mint.recipient": 339, - "__main__.mint.syscall_ptr": 344 - } - }, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 124, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 124 - } - }, - "476": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 348, - "__wrappers__.mint.range_check_ptr": 349, - "__wrappers__.mint.syscall_ptr": 347 - } - }, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/7a16feca69d1dc1343a49177e1e57103319136de3f2c6fabefae170177a1305e.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 122, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/29637b66643568891912d1ed3f5b810e37fc6dff63d2db9fba473c1883482e6f.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While handling calldata of" - ], - "start_col": 22, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 118 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 25, - "start_line": 122 - }, - "While handling calldata argument 'amount'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "478": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 348, - "__wrappers__.mint.range_check_ptr": 349, - "__wrappers__.mint.syscall_ptr": 347 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "479": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 348, - "__wrappers__.mint.range_check_ptr": 349, - "__wrappers__.mint.syscall_ptr": 347 - } - }, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 119, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 119 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "480": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 2 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 348, - "__wrappers__.mint.range_check_ptr": 349, - "__wrappers__.mint.syscall_ptr": 347 - } - }, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 120, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "481": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 3 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 348, - "__wrappers__.mint.range_check_ptr": 349, - "__wrappers__.mint.syscall_ptr": 347 - } - }, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 121, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 121 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "482": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 4 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 348, - "__wrappers__.mint.range_check_ptr": 349, - "__wrappers__.mint.syscall_ptr": 347 - } - }, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/8829423950ca8f358b1f1f4e14861fbd5253013d1565162e3d2a80eaaf7e8d77.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 122, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 152, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 128, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_recipient' in:" - ], - "start_col": 8, - "start_line": 122 - }, - "While handling calldata argument 'recipient'" - ], - "start_col": 32, - "start_line": 1 - } - }, - "483": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 5 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 348, - "__wrappers__.mint.range_check_ptr": 349, - "__wrappers__.mint.syscall_ptr": 347 - } - }, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7a16feca69d1dc1343a49177e1e57103319136de3f2c6fabefae170177a1305e.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 122, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 182, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 161, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_amount' in:" - ], - "start_col": 25, - "start_line": 122 - }, - "While handling calldata argument 'amount'" - ], - "start_col": 29, - "start_line": 1 - } - }, - "484": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 6 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 348, - "__wrappers__.mint.range_check_ptr": 349, - "__wrappers__.mint.syscall_ptr": 347 - } - }, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - } - }, - "486": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 178 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 359, - "__wrappers__.mint.range_check_ptr": 360, - "__wrappers__.mint.ret_struct": 361, - "__wrappers__.mint.syscall_ptr": 358 - } - }, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/mint/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/mint/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "488": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 179 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 359, - "__wrappers__.mint.range_check_ptr": 360, - "__wrappers__.mint.ret_struct": 361, - "__wrappers__.mint.retdata": 362, - "__wrappers__.mint.retdata_size": 363, - "__wrappers__.mint.syscall_ptr": 358 - } - }, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "489": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 180 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 359, - "__wrappers__.mint.range_check_ptr": 360, - "__wrappers__.mint.ret_struct": 361, - "__wrappers__.mint.retdata": 362, - "__wrappers__.mint.retdata_size": 363, - "__wrappers__.mint.syscall_ptr": 358 - } - }, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "490": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 181 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 359, - "__wrappers__.mint.range_check_ptr": 360, - "__wrappers__.mint.ret_struct": 361, - "__wrappers__.mint.retdata": 362, - "__wrappers__.mint.retdata_size": 363, - "__wrappers__.mint.syscall_ptr": 358 - } - }, - "hints": [], - "inst": { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - } - }, - "491": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 182 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 359, - "__wrappers__.mint.range_check_ptr": 360, - "__wrappers__.mint.ret_struct": 361, - "__wrappers__.mint.retdata": 362, - "__wrappers__.mint.retdata_size": 363, - "__wrappers__.mint.syscall_ptr": 358 - } - }, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "492": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 183 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 359, - "__wrappers__.mint.range_check_ptr": 360, - "__wrappers__.mint.ret_struct": 361, - "__wrappers__.mint.retdata": 362, - "__wrappers__.mint.retdata_size": 363, - "__wrappers__.mint.syscall_ptr": 358 - } - }, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/mint/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "494": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 184 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 359, - "__wrappers__.mint.range_check_ptr": 360, - "__wrappers__.mint.ret_struct": 361, - "__wrappers__.mint.retdata": 362, - "__wrappers__.mint.retdata_size": 363, - "__wrappers__.mint.syscall_ptr": 358 - } - }, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/mint/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "495": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 185 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 359, - "__wrappers__.mint.range_check_ptr": 360, - "__wrappers__.mint.ret_struct": 361, - "__wrappers__.mint.retdata": 362, - "__wrappers__.mint.retdata_size": 363, - "__wrappers__.mint.syscall_ptr": 358 - } - }, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mint/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 118 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "496": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 41, - "offset": 0 - }, - "reference_ids": { - "__main__.transfer.amount": 365, - "__main__.transfer.pedersen_ptr": 367, - "__main__.transfer.range_check_ptr": 368, - "__main__.transfer.recipient": 364, - "__main__.transfer.syscall_ptr": 366 - } - }, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 129, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 93, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 133, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 20, - "start_line": 133 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 93 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 129 - } - }, - "497": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 41, - "offset": 1 - }, - "reference_ids": { - "__main__.transfer.amount": 365, - "__main__.transfer.pedersen_ptr": 367, - "__main__.transfer.range_check_ptr": 368, - "__main__.transfer.recipient": 364, - "__main__.transfer.syscall_ptr": 366 - } - }, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 133, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 20, - "start_line": 133 - } - }, - "499": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 41, - "offset": 6 - }, - "reference_ids": { - "__main__.transfer.amount": 365, - "__main__.transfer.pedersen_ptr": 367, - "__main__.transfer.range_check_ptr": 368, - "__main__.transfer.recipient": 364, - "__main__.transfer.sender": 370, - "__main__.transfer.syscall_ptr": 369 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 93, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 133, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 100, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 134, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 134 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 100 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 133 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 93 - } - }, - "500": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 41, - "offset": 7 - }, - "reference_ids": { - "__main__.transfer.amount": 365, - "__main__.transfer.pedersen_ptr": 367, - "__main__.transfer.range_check_ptr": 368, - "__main__.transfer.recipient": 364, - "__main__.transfer.sender": 370, - "__main__.transfer.syscall_ptr": 369 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 130, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 101, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 134, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 134 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 101 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 130 - } - }, - "501": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 41, - "offset": 8 - }, - "reference_ids": { - "__main__.transfer.amount": 365, - "__main__.transfer.pedersen_ptr": 367, - "__main__.transfer.range_check_ptr": 368, - "__main__.transfer.recipient": 364, - "__main__.transfer.sender": 370, - "__main__.transfer.syscall_ptr": 369 - } - }, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 131, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 102, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 134, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 134 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 102 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 131 - } - }, - "502": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 41, - "offset": 9 - }, - "reference_ids": { - "__main__.transfer.amount": 365, - "__main__.transfer.pedersen_ptr": 367, - "__main__.transfer.range_check_ptr": 368, - "__main__.transfer.recipient": 364, - "__main__.transfer.sender": 370, - "__main__.transfer.syscall_ptr": 369 - } - }, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 133, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 134, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 15, - "start_line": 134 - }, - "While expanding the reference 'sender' in:" - ], - "start_col": 10, - "start_line": 133 - } - }, - "503": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 41, - "offset": 10 - }, - "reference_ids": { - "__main__.transfer.amount": 365, - "__main__.transfer.pedersen_ptr": 367, - "__main__.transfer.range_check_ptr": 368, - "__main__.transfer.recipient": 364, - "__main__.transfer.sender": 370, - "__main__.transfer.syscall_ptr": 369 - } - }, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 132, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 134, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 23, - "start_line": 134 - }, - "While expanding the reference 'recipient' in:" - ], - "start_col": 8, - "start_line": 132 - } - }, - "504": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 41, - "offset": 11 - }, - "reference_ids": { - "__main__.transfer.amount": 365, - "__main__.transfer.pedersen_ptr": 367, - "__main__.transfer.range_check_ptr": 368, - "__main__.transfer.recipient": 364, - "__main__.transfer.sender": 370, - "__main__.transfer.syscall_ptr": 369 - } - }, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 132, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 134, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 34, - "start_line": 134 - }, - "While expanding the reference 'amount' in:" - ], - "start_col": 25, - "start_line": 132 - } - }, - "505": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 41, - "offset": 12 - }, - "reference_ids": { - "__main__.transfer.amount": 365, - "__main__.transfer.pedersen_ptr": 367, - "__main__.transfer.range_check_ptr": 368, - "__main__.transfer.recipient": 364, - "__main__.transfer.sender": 370, - "__main__.transfer.syscall_ptr": 369 - } - }, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 134, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 134 - } - }, - "507": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 41, - "offset": 272 - }, - "reference_ids": { - "__main__.transfer.amount": 365, - "__main__.transfer.pedersen_ptr": 372, - "__main__.transfer.range_check_ptr": 373, - "__main__.transfer.recipient": 364, - "__main__.transfer.sender": 370, - "__main__.transfer.syscall_ptr": 371 - } - }, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 135, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 135 - } - }, - "508": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 375, - "__wrappers__.transfer.range_check_ptr": 376, - "__wrappers__.transfer.syscall_ptr": 374 - } - }, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/7a16feca69d1dc1343a49177e1e57103319136de3f2c6fabefae170177a1305e.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 132, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/29637b66643568891912d1ed3f5b810e37fc6dff63d2db9fba473c1883482e6f.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While handling calldata of" - ], - "start_col": 22, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 128 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 25, - "start_line": 132 - }, - "While handling calldata argument 'amount'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "510": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 375, - "__wrappers__.transfer.range_check_ptr": 376, - "__wrappers__.transfer.syscall_ptr": 374 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "511": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 375, - "__wrappers__.transfer.range_check_ptr": 376, - "__wrappers__.transfer.syscall_ptr": 374 - } - }, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 129, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "512": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 2 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 375, - "__wrappers__.transfer.range_check_ptr": 376, - "__wrappers__.transfer.syscall_ptr": 374 - } - }, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 130, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 130 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "513": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 3 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 375, - "__wrappers__.transfer.range_check_ptr": 376, - "__wrappers__.transfer.syscall_ptr": 374 - } - }, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 131, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 131 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "514": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 4 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 375, - "__wrappers__.transfer.range_check_ptr": 376, - "__wrappers__.transfer.syscall_ptr": 374 - } - }, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/8829423950ca8f358b1f1f4e14861fbd5253013d1565162e3d2a80eaaf7e8d77.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 132, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 152, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 128, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_recipient' in:" - ], - "start_col": 8, - "start_line": 132 - }, - "While handling calldata argument 'recipient'" - ], - "start_col": 32, - "start_line": 1 - } - }, - "515": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 5 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 375, - "__wrappers__.transfer.range_check_ptr": 376, - "__wrappers__.transfer.syscall_ptr": 374 - } - }, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7a16feca69d1dc1343a49177e1e57103319136de3f2c6fabefae170177a1305e.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 132, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 182, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 161, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_amount' in:" - ], - "start_col": 25, - "start_line": 132 - }, - "While handling calldata argument 'amount'" - ], - "start_col": 29, - "start_line": 1 - } - }, - "516": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 6 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 375, - "__wrappers__.transfer.range_check_ptr": 376, - "__wrappers__.transfer.syscall_ptr": 374 - } - }, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - } - }, - "518": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 280 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 386, - "__wrappers__.transfer.range_check_ptr": 387, - "__wrappers__.transfer.ret_struct": 388, - "__wrappers__.transfer.syscall_ptr": 385 - } - }, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/transfer/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/transfer/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "520": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 281 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 386, - "__wrappers__.transfer.range_check_ptr": 387, - "__wrappers__.transfer.ret_struct": 388, - "__wrappers__.transfer.retdata": 389, - "__wrappers__.transfer.retdata_size": 390, - "__wrappers__.transfer.syscall_ptr": 385 - } - }, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "521": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 282 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 386, - "__wrappers__.transfer.range_check_ptr": 387, - "__wrappers__.transfer.ret_struct": 388, - "__wrappers__.transfer.retdata": 389, - "__wrappers__.transfer.retdata_size": 390, - "__wrappers__.transfer.syscall_ptr": 385 - } - }, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "522": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 283 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 386, - "__wrappers__.transfer.range_check_ptr": 387, - "__wrappers__.transfer.ret_struct": 388, - "__wrappers__.transfer.retdata": 389, - "__wrappers__.transfer.retdata_size": 390, - "__wrappers__.transfer.syscall_ptr": 385 - } - }, - "hints": [], - "inst": { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - } - }, - "523": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 284 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 386, - "__wrappers__.transfer.range_check_ptr": 387, - "__wrappers__.transfer.ret_struct": 388, - "__wrappers__.transfer.retdata": 389, - "__wrappers__.transfer.retdata_size": 390, - "__wrappers__.transfer.syscall_ptr": 385 - } - }, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "524": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 285 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 386, - "__wrappers__.transfer.range_check_ptr": 387, - "__wrappers__.transfer.ret_struct": 388, - "__wrappers__.transfer.retdata": 389, - "__wrappers__.transfer.retdata_size": 390, - "__wrappers__.transfer.syscall_ptr": 385 - } - }, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/transfer/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "526": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 286 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 386, - "__wrappers__.transfer.range_check_ptr": 387, - "__wrappers__.transfer.ret_struct": 388, - "__wrappers__.transfer.retdata": 389, - "__wrappers__.transfer.retdata_size": 390, - "__wrappers__.transfer.syscall_ptr": 385 - } - }, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/transfer/656e44c20a9d517f293e5254999c75db86c191a5b1b3423c9314f8c59b4e6851.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "527": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 287 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 386, - "__wrappers__.transfer.range_check_ptr": 387, - "__wrappers__.transfer.ret_struct": 388, - "__wrappers__.transfer.retdata": 389, - "__wrappers__.transfer.retdata_size": 390, - "__wrappers__.transfer.syscall_ptr": 385 - } - }, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 128, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 128 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "528": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 0 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.pedersen_ptr": 395, - "__main__.transfer_from.range_check_ptr": 396, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 394 - } - }, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 140, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 93, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 144, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 20, - "start_line": 144 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 93 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 140 - } - }, - "529": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 1 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.pedersen_ptr": 395, - "__main__.transfer_from.range_check_ptr": 396, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 394 - } - }, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 144, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 20, - "start_line": 144 - } - }, - "531": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 6 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.pedersen_ptr": 395, - "__main__.transfer_from.range_check_ptr": 396, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 397 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 93, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 144, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 145, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 30, - "start_line": 145 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 14 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 144 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 93 - } - }, - "532": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 7 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.pedersen_ptr": 395, - "__main__.transfer_from.range_check_ptr": 396, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 397 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 141, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 145, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 30, - "start_line": 145 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 14 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 141 - } - }, - "533": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 8 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.pedersen_ptr": 395, - "__main__.transfer_from.range_check_ptr": 396, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 397 - } - }, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 142, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 145, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 30, - "start_line": 145 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 14 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 142 - } - }, - "534": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 9 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.pedersen_ptr": 395, - "__main__.transfer_from.range_check_ptr": 396, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 397 - } - }, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 143, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 145, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 52, - "start_line": 145 - }, - "While expanding the reference 'sender' in:" - ], - "start_col": 8, - "start_line": 143 - } - }, - "535": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 10 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.pedersen_ptr": 395, - "__main__.transfer_from.range_check_ptr": 396, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 397 - } - }, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 144, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 145, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 68, - "start_line": 145 - }, - "While expanding the reference 'caller' in:" - ], - "start_col": 10, - "start_line": 144 - } - }, - "536": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 11 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.pedersen_ptr": 395, - "__main__.transfer_from.range_check_ptr": 396, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 397 - } - }, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 145, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 30, - "start_line": 145 - } - }, - "538": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 74 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 400, - "__main__.transfer_from.range_check_ptr": 401, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 399 - } - }, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 145, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 65, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 146, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 146 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 19, - "start_line": 65 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 145 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 14 - } - }, - "539": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 75 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 400, - "__main__.transfer_from.range_check_ptr": 401, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 399 - } - }, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 143, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 146, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 18, - "start_line": 146 - }, - "While expanding the reference 'amount' in:" - ], - "start_col": 39, - "start_line": 143 - } - }, - "540": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 76 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 400, - "__main__.transfer_from.range_check_ptr": 401, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 399 - } - }, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 145, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 146, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 26, - "start_line": 146 - }, - "While expanding the reference 'caller_allowance' in:" - ], - "start_col": 10, - "start_line": 145 - } - }, - "541": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 77 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 400, - "__main__.transfer_from.range_check_ptr": 401, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 399 - } - }, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 146, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 146 - } - }, - "543": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 93 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 400, - "__main__.transfer_from.range_check_ptr": 403, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 399 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 145, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 100, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 147, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 147 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 100 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 145 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 14 - } - }, - "544": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 94 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 400, - "__main__.transfer_from.range_check_ptr": 403, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 399 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 145, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 101, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 147, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 147 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 101 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 145 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 14 - } - }, - "545": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 95 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 400, - "__main__.transfer_from.range_check_ptr": 403, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 399 - } - }, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 65, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 146, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 102, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 147, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 147 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 102 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 146 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 19, - "start_line": 65 - } - }, - "546": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 96 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 400, - "__main__.transfer_from.range_check_ptr": 403, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 399 - } - }, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 143, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 147, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 15, - "start_line": 147 - }, - "While expanding the reference 'sender' in:" - ], - "start_col": 8, - "start_line": 143 - } - }, - "547": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 97 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 400, - "__main__.transfer_from.range_check_ptr": 403, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 399 - } - }, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 143, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 147, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 23, - "start_line": 147 - }, - "While expanding the reference 'recipient' in:" - ], - "start_col": 22, - "start_line": 143 - } - }, - "548": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 98 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 400, - "__main__.transfer_from.range_check_ptr": 403, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 399 - } - }, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 143, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 147, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 34, - "start_line": 147 - }, - "While expanding the reference 'amount' in:" - ], - "start_col": 39, - "start_line": 143 - } - }, - "549": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 99 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 400, - "__main__.transfer_from.range_check_ptr": 403, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 399 - } - }, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 147, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 147 - } - }, - "551": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 359 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 405, - "__main__.transfer_from.range_check_ptr": 406, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 404 - } - }, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 143, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 148, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 22, - "start_line": 148 - }, - "While expanding the reference 'sender' in:" - ], - "start_col": 8, - "start_line": 143 - } - }, - "552": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 360 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 405, - "__main__.transfer_from.range_check_ptr": 406, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 404 - } - }, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 144, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 148, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 30, - "start_line": 148 - }, - "While expanding the reference 'caller' in:" - ], - "start_col": 10, - "start_line": 144 - } - }, - "553": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 361 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 405, - "__main__.transfer_from.range_check_ptr": 406, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 404 - } - }, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 148, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 38, - "start_line": 148 - } - }, - "554": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 362 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 405, - "__main__.transfer_from.range_check_ptr": 406, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 404 - } - }, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 148, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 148 - } - }, - "556": { - "accessible_scopes": ["__main__", "__main__", "__main__.transfer_from"], - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 423 - }, - "reference_ids": { - "__main__.transfer_from.amount": 393, - "__main__.transfer_from.caller": 398, - "__main__.transfer_from.caller_allowance": 402, - "__main__.transfer_from.pedersen_ptr": 408, - "__main__.transfer_from.range_check_ptr": 409, - "__main__.transfer_from.recipient": 392, - "__main__.transfer_from.sender": 391, - "__main__.transfer_from.syscall_ptr": 407 - } - }, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 149, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 149 - } - }, - "557": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 411, - "__wrappers__.transfer_from.range_check_ptr": 412, - "__wrappers__.transfer_from.syscall_ptr": 410 - } - }, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/7a16feca69d1dc1343a49177e1e57103319136de3f2c6fabefae170177a1305e.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 143, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/29637b66643568891912d1ed3f5b810e37fc6dff63d2db9fba473c1883482e6f.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While handling calldata of" - ], - "start_col": 22, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 139 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 39, - "start_line": 143 - }, - "While handling calldata argument 'amount'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "559": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 411, - "__wrappers__.transfer_from.range_check_ptr": 412, - "__wrappers__.transfer_from.syscall_ptr": 410 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "560": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 411, - "__wrappers__.transfer_from.range_check_ptr": 412, - "__wrappers__.transfer_from.syscall_ptr": 410 - } - }, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 140, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/4a68d81f8f2bb31e3e12a7036b6823bb72d4eaa3b0e8f8858ab46e74ee3342c4.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 140 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "561": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 2 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 411, - "__wrappers__.transfer_from.range_check_ptr": 412, - "__wrappers__.transfer_from.syscall_ptr": 410 - } - }, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 141, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/4a68d81f8f2bb31e3e12a7036b6823bb72d4eaa3b0e8f8858ab46e74ee3342c4.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 141 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "562": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 3 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 411, - "__wrappers__.transfer_from.range_check_ptr": 412, - "__wrappers__.transfer_from.syscall_ptr": 410 - } - }, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 142, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/4a68d81f8f2bb31e3e12a7036b6823bb72d4eaa3b0e8f8858ab46e74ee3342c4.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 142 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "563": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 4 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 411, - "__wrappers__.transfer_from.range_check_ptr": 412, - "__wrappers__.transfer_from.syscall_ptr": 410 - } - }, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/ee5d3071c88185a8819da2ec67ac8b0a97b693cffcf26f7d98030f1554bd0568.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 143, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 146, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/4a68d81f8f2bb31e3e12a7036b6823bb72d4eaa3b0e8f8858ab46e74ee3342c4.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_sender' in:" - ], - "start_col": 8, - "start_line": 143 - }, - "While handling calldata argument 'sender'" - ], - "start_col": 29, - "start_line": 1 - } - }, - "564": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 5 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 411, - "__wrappers__.transfer_from.range_check_ptr": 412, - "__wrappers__.transfer_from.syscall_ptr": 410 - } - }, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/8829423950ca8f358b1f1f4e14861fbd5253013d1565162e3d2a80eaaf7e8d77.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 143, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 182, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/4a68d81f8f2bb31e3e12a7036b6823bb72d4eaa3b0e8f8858ab46e74ee3342c4.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 158, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_recipient' in:" - ], - "start_col": 22, - "start_line": 143 - }, - "While handling calldata argument 'recipient'" - ], - "start_col": 32, - "start_line": 1 - } - }, - "565": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 6 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 411, - "__wrappers__.transfer_from.range_check_ptr": 412, - "__wrappers__.transfer_from.syscall_ptr": 410 - } - }, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7a16feca69d1dc1343a49177e1e57103319136de3f2c6fabefae170177a1305e.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 143, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 212, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/4a68d81f8f2bb31e3e12a7036b6823bb72d4eaa3b0e8f8858ab46e74ee3342c4.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 191, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_amount' in:" - ], - "start_col": 39, - "start_line": 143 - }, - "While handling calldata argument 'amount'" - ], - "start_col": 29, - "start_line": 1 - } - }, - "566": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 7 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 411, - "__wrappers__.transfer_from.range_check_ptr": 412, - "__wrappers__.transfer_from.syscall_ptr": 410 - } - }, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - } - }, - "568": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 432 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 424, - "__wrappers__.transfer_from.range_check_ptr": 425, - "__wrappers__.transfer_from.ret_struct": 426, - "__wrappers__.transfer_from.syscall_ptr": 423 - } - }, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/4a68d81f8f2bb31e3e12a7036b6823bb72d4eaa3b0e8f8858ab46e74ee3342c4.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/4a68d81f8f2bb31e3e12a7036b6823bb72d4eaa3b0e8f8858ab46e74ee3342c4.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "570": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 433 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 424, - "__wrappers__.transfer_from.range_check_ptr": 425, - "__wrappers__.transfer_from.ret_struct": 426, - "__wrappers__.transfer_from.retdata": 427, - "__wrappers__.transfer_from.retdata_size": 428, - "__wrappers__.transfer_from.syscall_ptr": 423 - } - }, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/4a68d81f8f2bb31e3e12a7036b6823bb72d4eaa3b0e8f8858ab46e74ee3342c4.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "571": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 434 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 424, - "__wrappers__.transfer_from.range_check_ptr": 425, - "__wrappers__.transfer_from.ret_struct": 426, - "__wrappers__.transfer_from.retdata": 427, - "__wrappers__.transfer_from.retdata_size": 428, - "__wrappers__.transfer_from.syscall_ptr": 423 - } - }, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/4a68d81f8f2bb31e3e12a7036b6823bb72d4eaa3b0e8f8858ab46e74ee3342c4.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "572": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 435 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 424, - "__wrappers__.transfer_from.range_check_ptr": 425, - "__wrappers__.transfer_from.ret_struct": 426, - "__wrappers__.transfer_from.retdata": 427, - "__wrappers__.transfer_from.retdata_size": 428, - "__wrappers__.transfer_from.syscall_ptr": 423 - } - }, - "hints": [], - "inst": { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/4a68d81f8f2bb31e3e12a7036b6823bb72d4eaa3b0e8f8858ab46e74ee3342c4.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - } - }, - "573": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 436 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 424, - "__wrappers__.transfer_from.range_check_ptr": 425, - "__wrappers__.transfer_from.ret_struct": 426, - "__wrappers__.transfer_from.retdata": 427, - "__wrappers__.transfer_from.retdata_size": 428, - "__wrappers__.transfer_from.syscall_ptr": 423 - } - }, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "574": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 437 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 424, - "__wrappers__.transfer_from.range_check_ptr": 425, - "__wrappers__.transfer_from.ret_struct": 426, - "__wrappers__.transfer_from.retdata": 427, - "__wrappers__.transfer_from.retdata_size": 428, - "__wrappers__.transfer_from.syscall_ptr": 423 - } - }, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/4a68d81f8f2bb31e3e12a7036b6823bb72d4eaa3b0e8f8858ab46e74ee3342c4.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "576": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 438 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 424, - "__wrappers__.transfer_from.range_check_ptr": 425, - "__wrappers__.transfer_from.ret_struct": 426, - "__wrappers__.transfer_from.retdata": 427, - "__wrappers__.transfer_from.retdata_size": 428, - "__wrappers__.transfer_from.syscall_ptr": 423 - } - }, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/4a68d81f8f2bb31e3e12a7036b6823bb72d4eaa3b0e8f8858ab46e74ee3342c4.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "577": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 439 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 424, - "__wrappers__.transfer_from.range_check_ptr": 425, - "__wrappers__.transfer_from.ret_struct": 426, - "__wrappers__.transfer_from.retdata": 427, - "__wrappers__.transfer_from.retdata_size": 428, - "__wrappers__.transfer_from.syscall_ptr": 423 - } - }, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transfer_from/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 139 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "578": { - "accessible_scopes": ["__main__", "__main__", "__main__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 45, - "offset": 0 - }, - "reference_ids": { - "__main__.approve.amount": 430, - "__main__.approve.pedersen_ptr": 432, - "__main__.approve.range_check_ptr": 433, - "__main__.approve.spender": 429, - "__main__.approve.syscall_ptr": 431 - } - }, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 154, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 93, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 158, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 20, - "start_line": 158 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 93 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 154 - } - }, - "579": { - "accessible_scopes": ["__main__", "__main__", "__main__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 45, - "offset": 1 - }, - "reference_ids": { - "__main__.approve.amount": 430, - "__main__.approve.pedersen_ptr": 432, - "__main__.approve.range_check_ptr": 433, - "__main__.approve.spender": 429, - "__main__.approve.syscall_ptr": 431 - } - }, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 158, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 20, - "start_line": 158 - } - }, - "581": { - "accessible_scopes": ["__main__", "__main__", "__main__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 45, - "offset": 6 - }, - "reference_ids": { - "__main__.approve.amount": 430, - "__main__.approve.caller": 435, - "__main__.approve.pedersen_ptr": 432, - "__main__.approve.range_check_ptr": 433, - "__main__.approve.spender": 429, - "__main__.approve.syscall_ptr": 434 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 93, - "input_file": { - "filename": "/Users/janek/Library/Python/3.8/lib/python/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 158, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 159, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 159 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 158 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 93 - } - }, - "582": { - "accessible_scopes": ["__main__", "__main__", "__main__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 45, - "offset": 7 - }, - "reference_ids": { - "__main__.approve.amount": 430, - "__main__.approve.caller": 435, - "__main__.approve.pedersen_ptr": 432, - "__main__.approve.range_check_ptr": 433, - "__main__.approve.spender": 429, - "__main__.approve.syscall_ptr": 434 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 155, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 159, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 159 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 155 - } - }, - "583": { - "accessible_scopes": ["__main__", "__main__", "__main__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 45, - "offset": 8 - }, - "reference_ids": { - "__main__.approve.amount": 430, - "__main__.approve.caller": 435, - "__main__.approve.pedersen_ptr": 432, - "__main__.approve.range_check_ptr": 433, - "__main__.approve.spender": 429, - "__main__.approve.syscall_ptr": 434 - } - }, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 156, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/allowances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 159, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 159 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 156 - } - }, - "584": { - "accessible_scopes": ["__main__", "__main__", "__main__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 45, - "offset": 9 - }, - "reference_ids": { - "__main__.approve.amount": 430, - "__main__.approve.caller": 435, - "__main__.approve.pedersen_ptr": 432, - "__main__.approve.range_check_ptr": 433, - "__main__.approve.spender": 429, - "__main__.approve.syscall_ptr": 434 - } - }, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 158, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 159, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 22, - "start_line": 159 - }, - "While expanding the reference 'caller' in:" - ], - "start_col": 10, - "start_line": 158 - } - }, - "585": { - "accessible_scopes": ["__main__", "__main__", "__main__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 45, - "offset": 10 - }, - "reference_ids": { - "__main__.approve.amount": 430, - "__main__.approve.caller": 435, - "__main__.approve.pedersen_ptr": 432, - "__main__.approve.range_check_ptr": 433, - "__main__.approve.spender": 429, - "__main__.approve.syscall_ptr": 434 - } - }, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 157, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 159, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 30, - "start_line": 159 - }, - "While expanding the reference 'spender' in:" - ], - "start_col": 8, - "start_line": 157 - } - }, - "586": { - "accessible_scopes": ["__main__", "__main__", "__main__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 45, - "offset": 11 - }, - "reference_ids": { - "__main__.approve.amount": 430, - "__main__.approve.caller": 435, - "__main__.approve.pedersen_ptr": 432, - "__main__.approve.range_check_ptr": 433, - "__main__.approve.spender": 429, - "__main__.approve.syscall_ptr": 434 - } - }, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 157, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 159, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 39, - "start_line": 159 - }, - "While expanding the reference 'amount' in:" - ], - "start_col": 23, - "start_line": 157 - } - }, - "587": { - "accessible_scopes": ["__main__", "__main__", "__main__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 45, - "offset": 12 - }, - "reference_ids": { - "__main__.approve.amount": 430, - "__main__.approve.caller": 435, - "__main__.approve.pedersen_ptr": 432, - "__main__.approve.range_check_ptr": 433, - "__main__.approve.spender": 429, - "__main__.approve.syscall_ptr": 434 - } - }, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 159, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 159 - } - }, - "589": { - "accessible_scopes": ["__main__", "__main__", "__main__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 45, - "offset": 73 - }, - "reference_ids": { - "__main__.approve.amount": 430, - "__main__.approve.caller": 435, - "__main__.approve.pedersen_ptr": 437, - "__main__.approve.range_check_ptr": 438, - "__main__.approve.spender": 429, - "__main__.approve.syscall_ptr": 436 - } - }, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 160, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 5, - "start_line": 160 - } - }, - "590": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 440, - "__wrappers__.approve.range_check_ptr": 441, - "__wrappers__.approve.syscall_ptr": 439 - } - }, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/7a16feca69d1dc1343a49177e1e57103319136de3f2c6fabefae170177a1305e.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 157, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/29637b66643568891912d1ed3f5b810e37fc6dff63d2db9fba473c1883482e6f.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While handling calldata of" - ], - "start_col": 22, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 153 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 23, - "start_line": 157 - }, - "While handling calldata argument 'amount'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "592": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 440, - "__wrappers__.approve.range_check_ptr": 441, - "__wrappers__.approve.syscall_ptr": 439 - } - }, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7f0b238f4e526821a97d8aaa2f9484df4b5bd00cbad10a761ae4225314096a56.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "593": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 1 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 440, - "__wrappers__.approve.range_check_ptr": 441, - "__wrappers__.approve.syscall_ptr": 439 - } - }, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/f4a8893cfc7cc4f313b0c426fa25c38c6c57664957bc56a170a27945759c5102.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 154, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/62256116ec57d2cf92c90bf84e5089fd9bb61bdcd366d9ec2bc048bca7cca307.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 154 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "594": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 2 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 440, - "__wrappers__.approve.range_check_ptr": 441, - "__wrappers__.approve.syscall_ptr": 439 - } - }, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/bf54f65e3c6b81daf1c2b60a8cb4034b53ce30386ebc03b148a9de60d6f5dd57.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 155, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/62256116ec57d2cf92c90bf84e5089fd9bb61bdcd366d9ec2bc048bca7cca307.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 155 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "595": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 3 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 440, - "__wrappers__.approve.range_check_ptr": 441, - "__wrappers__.approve.syscall_ptr": 439 - } - }, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/d5f67cc7e69abbde284d945f017319bd8e156adfab63895c8d652f5c3e4f6c3a.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 156, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/62256116ec57d2cf92c90bf84e5089fd9bb61bdcd366d9ec2bc048bca7cca307.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 156 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "596": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 4 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 440, - "__wrappers__.approve.range_check_ptr": 441, - "__wrappers__.approve.syscall_ptr": 439 - } - }, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/f5eaaf70cb77231309fcb9fe064570b7d1dd9f798db7541c13146b187dbbc1d7.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 157, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 148, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/62256116ec57d2cf92c90bf84e5089fd9bb61bdcd366d9ec2bc048bca7cca307.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 126, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_spender' in:" - ], - "start_col": 8, - "start_line": 157 - }, - "While handling calldata argument 'spender'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "597": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 5 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 440, - "__wrappers__.approve.range_check_ptr": 441, - "__wrappers__.approve.syscall_ptr": 439 - } - }, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7a16feca69d1dc1343a49177e1e57103319136de3f2c6fabefae170177a1305e.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 157, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 178, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/62256116ec57d2cf92c90bf84e5089fd9bb61bdcd366d9ec2bc048bca7cca307.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 157, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_amount' in:" - ], - "start_col": 23, - "start_line": 157 - }, - "While handling calldata argument 'amount'" - ], - "start_col": 29, - "start_line": 1 - } - }, - "598": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 6 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 440, - "__wrappers__.approve.range_check_ptr": 441, - "__wrappers__.approve.syscall_ptr": 439 - } - }, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - } - }, - "600": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 81 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 451, - "__wrappers__.approve.range_check_ptr": 452, - "__wrappers__.approve.ret_struct": 453, - "__wrappers__.approve.syscall_ptr": 450 - } - }, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/approve/62256116ec57d2cf92c90bf84e5089fd9bb61bdcd366d9ec2bc048bca7cca307.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/approve/62256116ec57d2cf92c90bf84e5089fd9bb61bdcd366d9ec2bc048bca7cca307.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "602": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 82 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 451, - "__wrappers__.approve.range_check_ptr": 452, - "__wrappers__.approve.ret_struct": 453, - "__wrappers__.approve.retdata": 454, - "__wrappers__.approve.retdata_size": 455, - "__wrappers__.approve.syscall_ptr": 450 - } - }, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/62256116ec57d2cf92c90bf84e5089fd9bb61bdcd366d9ec2bc048bca7cca307.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "603": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 83 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 451, - "__wrappers__.approve.range_check_ptr": 452, - "__wrappers__.approve.ret_struct": 453, - "__wrappers__.approve.retdata": 454, - "__wrappers__.approve.retdata_size": 455, - "__wrappers__.approve.syscall_ptr": 450 - } - }, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/62256116ec57d2cf92c90bf84e5089fd9bb61bdcd366d9ec2bc048bca7cca307.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "604": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 84 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 451, - "__wrappers__.approve.range_check_ptr": 452, - "__wrappers__.approve.ret_struct": 453, - "__wrappers__.approve.retdata": 454, - "__wrappers__.approve.retdata_size": 455, - "__wrappers__.approve.syscall_ptr": 450 - } - }, - "hints": [], - "inst": { - "end_col": 116, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/62256116ec57d2cf92c90bf84e5089fd9bb61bdcd366d9ec2bc048bca7cca307.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 101, - "start_line": 1 - } - }, - "605": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 85 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 451, - "__wrappers__.approve.range_check_ptr": 452, - "__wrappers__.approve.ret_struct": 453, - "__wrappers__.approve.retdata": 454, - "__wrappers__.approve.retdata_size": 455, - "__wrappers__.approve.syscall_ptr": 450 - } - }, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/7998f829c4aa5ea19acd9325ec8f13445bd7eb3660e26c1acda6a694c86b221a.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "606": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 86 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 451, - "__wrappers__.approve.range_check_ptr": 452, - "__wrappers__.approve.ret_struct": 453, - "__wrappers__.approve.retdata": 454, - "__wrappers__.approve.retdata_size": 455, - "__wrappers__.approve.syscall_ptr": 450 - } - }, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/approve/62256116ec57d2cf92c90bf84e5089fd9bb61bdcd366d9ec2bc048bca7cca307.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "608": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 87 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 451, - "__wrappers__.approve.range_check_ptr": 452, - "__wrappers__.approve.ret_struct": 453, - "__wrappers__.approve.retdata": 454, - "__wrappers__.approve.retdata_size": 455, - "__wrappers__.approve.syscall_ptr": 450 - } - }, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/approve/62256116ec57d2cf92c90bf84e5089fd9bb61bdcd366d9ec2bc048bca7cca307.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "609": { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 88 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 451, - "__wrappers__.approve.range_check_ptr": 452, - "__wrappers__.approve.ret_struct": 453, - "__wrappers__.approve.retdata": 454, - "__wrappers__.approve.retdata_size": 455, - "__wrappers__.approve.syscall_ptr": 450 - } - }, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/aa526043a8db9187624857305b1409f029aec9f9c85f47438b55e65b3afc0639.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 153, - "input_file": { - "filename": "contracts/ERC20.cairo" - }, - "start_col": 6, - "start_line": 153 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - } - } - }, - "hints": { - "6": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert 0 <= ids.a % PRIME < range_check_builtin.bound, f'a = {ids.a} is out of range.'", - "flow_tracking_data": { - "ap_tracking": { - "group": 1, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_nn.a": 5, - "starkware.cairo.common.math.assert_nn.range_check_ptr": 6 - } - } - } - ], - "24": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "code": "from starkware.cairo.common.math_utils import as_int\n\n# Correctness check.\nvalue = as_int(ids.value, PRIME) % PRIME\nassert value < ids.UPPER_BOUND, f'{value} is outside of the range [0, 2**250).'\n\n# Calculation for the assertion.\nids.high, ids.low = divmod(ids.value, ids.SHIFT)", - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_250_bit.high": 20, - "starkware.cairo.common.math.assert_250_bit.low": 19, - "starkware.cairo.common.math.assert_250_bit.range_check_ptr": 18, - "starkware.cairo.common.math.assert_250_bit.value": 17 - } - } - } - ], - "39": [ - { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "code": "# Verify the assumptions on the relationship between 2**250, ADDR_BOUND and PRIME.\nADDR_BOUND = ids.ADDR_BOUND % PRIME\nassert (2**250 < ADDR_BOUND <= 2**251) and (2 * 2**250 < PRIME) and (\n ADDR_BOUND * 2 > PRIME), \\\n 'normalize_address() cannot be used with the current constants.'\nids.is_small = 1 if ids.addr < ADDR_BOUND else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29 - } - } - } - ], - "57": [ - { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "code": "ids.is_250 = 1 if ids.addr < 2**250 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 2 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 28, - "starkware.starknet.common.storage.normalize_address.is_250": 36, - "starkware.starknet.common.storage.normalize_address.is_small": 30, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": 29 - } - } - } - ], - "80": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "code": "syscall_handler.get_caller_address(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 6, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_caller_address.__temp8": 43, - "starkware.starknet.common.syscalls.get_caller_address.syscall": 42, - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": 41 - } - } - } - ], - "88": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "code": "syscall_handler.storage_read(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 7, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_read.__temp9": 48, - "starkware.starknet.common.syscalls.storage_read.address": 45, - "starkware.starknet.common.syscalls.storage_read.syscall": 47, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 46 - } - } - } - ], - "97": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "code": "syscall_handler.storage_write(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 8, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_write.__temp10": 54, - "starkware.starknet.common.syscalls.storage_write.address": 51, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 53, - "starkware.starknet.common.syscalls.storage_write.value": 52 - } - } - } - ], - "220": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.decimals_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 19, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.decimals_encode_return.range_check_ptr": 145, - "__wrappers__.decimals_encode_return.ret_struct": 144 - } - } - } - ], - "278": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.get_total_supply_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 25, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.get_total_supply_encode_return.range_check_ptr": 191, - "__wrappers__.get_total_supply_encode_return.ret_struct": 190 - } - } - } - ], - "310": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balance_of_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 28, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.balance_of_encode_return.range_check_ptr": 218, - "__wrappers__.balance_of_encode_return.ret_struct": 217 - } - } - } - ], - "346": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.allowance_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 31, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.allowance_encode_return.range_check_ptr": 249, - "__wrappers__.allowance_encode_return.ret_struct": 248 - } - } - } - ], - "407": [ - { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.initialize"], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 36, - "offset": 0 - }, - "reference_ids": { - "__wrappers__.initialize.__calldata_actual_size": 292, - "__wrappers__.initialize.__calldata_ptr": 291, - "__wrappers__.initialize.ecdsa_ptr": 290, - "__wrappers__.initialize.pedersen_ptr": 294, - "__wrappers__.initialize.range_check_ptr": 295, - "__wrappers__.initialize.ret_struct": 296, - "__wrappers__.initialize.syscall_ptr": 293 - } - } - } - ], - "486": [ - { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.mint"], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 40, - "offset": 178 - }, - "reference_ids": { - "__wrappers__.mint.__calldata_actual_size": 356, - "__wrappers__.mint.__calldata_arg_amount": 354, - "__wrappers__.mint.__calldata_arg_recipient": 352, - "__wrappers__.mint.__calldata_ptr": 355, - "__wrappers__.mint.__temp17": 357, - "__wrappers__.mint.ecdsa_ptr": 350, - "__wrappers__.mint.pedersen_ptr": 359, - "__wrappers__.mint.range_check_ptr": 360, - "__wrappers__.mint.ret_struct": 361, - "__wrappers__.mint.syscall_ptr": 358 - } - } - } - ], - "518": [ - { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.transfer"], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 280 - }, - "reference_ids": { - "__wrappers__.transfer.__calldata_actual_size": 383, - "__wrappers__.transfer.__calldata_arg_amount": 381, - "__wrappers__.transfer.__calldata_arg_recipient": 379, - "__wrappers__.transfer.__calldata_ptr": 382, - "__wrappers__.transfer.__temp18": 384, - "__wrappers__.transfer.ecdsa_ptr": 377, - "__wrappers__.transfer.pedersen_ptr": 386, - "__wrappers__.transfer.range_check_ptr": 387, - "__wrappers__.transfer.ret_struct": 388, - "__wrappers__.transfer.syscall_ptr": 385 - } - } - } - ], - "568": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transfer_from" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 44, - "offset": 432 - }, - "reference_ids": { - "__wrappers__.transfer_from.__calldata_actual_size": 421, - "__wrappers__.transfer_from.__calldata_arg_amount": 419, - "__wrappers__.transfer_from.__calldata_arg_recipient": 417, - "__wrappers__.transfer_from.__calldata_arg_sender": 415, - "__wrappers__.transfer_from.__calldata_ptr": 420, - "__wrappers__.transfer_from.__temp19": 422, - "__wrappers__.transfer_from.ecdsa_ptr": 413, - "__wrappers__.transfer_from.pedersen_ptr": 424, - "__wrappers__.transfer_from.range_check_ptr": 425, - "__wrappers__.transfer_from.ret_struct": 426, - "__wrappers__.transfer_from.syscall_ptr": 423 - } - } - } - ], - "600": [ - { - "accessible_scopes": ["__main__", "__main__", "__wrappers__", "__wrappers__.approve"], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 46, - "offset": 81 - }, - "reference_ids": { - "__wrappers__.approve.__calldata_actual_size": 448, - "__wrappers__.approve.__calldata_arg_amount": 446, - "__wrappers__.approve.__calldata_arg_spender": 444, - "__wrappers__.approve.__calldata_ptr": 447, - "__wrappers__.approve.__temp20": 449, - "__wrappers__.approve.ecdsa_ptr": 442, - "__wrappers__.approve.pedersen_ptr": 451, - "__wrappers__.approve.range_check_ptr": 452, - "__wrappers__.approve.ret_struct": 453, - "__wrappers__.approve.syscall_ptr": 450 - } - } - } - ] - }, - "identifiers": { - "__main__.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.SignatureBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "type": "alias" - }, - "__main__._mint": { - "decorators": [], - "pc": 417, - "type": "function" - }, - "__main__._mint.Args": { - "full_name": "__main__._mint.Args", - "members": { - "amount": { - "cairo_type": "felt", - "offset": 1 - }, - "recipient": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__main__._mint.ImplicitArgs": { - "full_name": "__main__._mint.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._mint.Return": { - "full_name": "__main__._mint.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._mint.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._mint.amount": { - "cairo_type": "felt", - "full_name": "__main__._mint.amount", - "references": [ - { - "ap_tracking_data": { - "group": 37, - "offset": 0 - }, - "pc": 417, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__._mint.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__._mint.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 37, - "offset": 0 - }, - "pc": 417, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 61 - }, - "pc": 423, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 121 - }, - "pc": 430, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 141 - }, - "pc": 432, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 163 - }, - "pc": 438, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__._mint.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__._mint.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 37, - "offset": 0 - }, - "pc": 417, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 61 - }, - "pc": 423, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 121 - }, - "pc": 430, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 141 - }, - "pc": 432, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 163 - }, - "pc": 438, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__._mint.recipient": { - "cairo_type": "felt", - "full_name": "__main__._mint.recipient", - "references": [ - { - "ap_tracking_data": { - "group": 37, - "offset": 0 - }, - "pc": 417, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "__main__._mint.res": { - "cairo_type": "felt", - "full_name": "__main__._mint.res", - "references": [ - { - "ap_tracking_data": { - "group": 37, - "offset": 61 - }, - "pc": 423, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__._mint.supply": { - "cairo_type": "felt", - "full_name": "__main__._mint.supply", - "references": [ - { - "ap_tracking_data": { - "group": 37, - "offset": 141 - }, - "pc": 432, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__._mint.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__._mint.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 37, - "offset": 0 - }, - "pc": 417, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 61 - }, - "pc": 423, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 121 - }, - "pc": 430, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 141 - }, - "pc": 432, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 163 - }, - "pc": 438, - "value": "[cast(ap + (-3), felt**)]" - } - ], - "type": "reference" - }, - "__main__._transfer": { - "decorators": [], - "pc": 439, - "type": "function" - }, - "__main__._transfer.Args": { - "full_name": "__main__._transfer.Args", - "members": { - "amount": { - "cairo_type": "felt", - "offset": 2 - }, - "recipient": { - "cairo_type": "felt", - "offset": 1 - }, - "sender": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._transfer.ImplicitArgs": { - "full_name": "__main__._transfer.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._transfer.Return": { - "full_name": "__main__._transfer.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._transfer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._transfer.amount": { - "cairo_type": "felt", - "full_name": "__main__._transfer.amount", - "references": [ - { - "ap_tracking_data": { - "group": 38, - "offset": 0 - }, - "pc": 439, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__._transfer.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__._transfer.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 38, - "offset": 0 - }, - "pc": 439, - "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 61 - }, - "pc": 445, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 140 - }, - "pc": 457, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 198 - }, - "pc": 460, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 258 - }, - "pc": 467, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__._transfer.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__._transfer.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 38, - "offset": 0 - }, - "pc": 439, - "value": "[cast(fp + (-6), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 61 - }, - "pc": 445, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 80 - }, - "pc": 450, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 140 - }, - "pc": 457, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 198 - }, - "pc": 460, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 258 - }, - "pc": 467, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__._transfer.recipient": { - "cairo_type": "felt", - "full_name": "__main__._transfer.recipient", - "references": [ - { - "ap_tracking_data": { - "group": 38, - "offset": 0 - }, - "pc": 439, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "__main__._transfer.res": { - "cairo_type": "felt", - "full_name": "__main__._transfer.res", - "references": [ - { - "ap_tracking_data": { - "group": 38, - "offset": 198 - }, - "pc": 460, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__._transfer.sender": { - "cairo_type": "felt", - "full_name": "__main__._transfer.sender", - "references": [ - { - "ap_tracking_data": { - "group": 38, - "offset": 0 - }, - "pc": 439, - "value": "[cast(fp + (-5), felt*)]" - } - ], - "type": "reference" - }, - "__main__._transfer.sender_balance": { - "cairo_type": "felt", - "full_name": "__main__._transfer.sender_balance", - "references": [ - { - "ap_tracking_data": { - "group": 38, - "offset": 61 - }, - "pc": 445, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__._transfer.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__._transfer.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 38, - "offset": 0 - }, - "pc": 439, - "value": "[cast(fp + (-8), felt**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 61 - }, - "pc": 445, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 140 - }, - "pc": 457, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 198 - }, - "pc": 460, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 258 - }, - "pc": 467, - "value": "[cast(ap + (-3), felt**)]" - } - ], - "type": "reference" - }, - "__main__.allowance": { - "decorators": ["view"], - "pc": 338, - "type": "function" - }, - "__main__.allowance.Args": { - "full_name": "__main__.allowance.Args", - "members": { - "owner": { - "cairo_type": "felt", - "offset": 0 - }, - "spender": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.allowance.ImplicitArgs": { - "full_name": "__main__.allowance.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.allowance.Return": { - "full_name": "__main__.allowance.Return", - "members": { - "res": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.allowance.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.allowance.owner": { - "cairo_type": "felt", - "full_name": "__main__.allowance.owner", - "references": [ - { - "ap_tracking_data": { - "group": 30, - "offset": 0 - }, - "pc": 338, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowance.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.allowance.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 30, - "offset": 0 - }, - "pc": 338, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 30, - "offset": 68 - }, - "pc": 345, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.allowance.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.allowance.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 30, - "offset": 0 - }, - "pc": 338, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 30, - "offset": 68 - }, - "pc": 345, - "value": "[cast(ap + (-2), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowance.res": { - "cairo_type": "felt", - "full_name": "__main__.allowance.res", - "references": [ - { - "ap_tracking_data": { - "group": 30, - "offset": 68 - }, - "pc": 345, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowance.spender": { - "cairo_type": "felt", - "full_name": "__main__.allowance.spender", - "references": [ - { - "ap_tracking_data": { - "group": 30, - "offset": 0 - }, - "pc": 338, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowance.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.allowance.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 30, - "offset": 0 - }, - "pc": 338, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 30, - "offset": 68 - }, - "pc": 345, - "value": "[cast(ap + (-4), felt**)]" - } - ], - "type": "reference" - }, - "__main__.allowances": { - "type": "namespace" - }, - "__main__.allowances.Args": { - "full_name": "__main__.allowances.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.allowances.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.allowances.ImplicitArgs": { - "full_name": "__main__.allowances.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.allowances.Return": { - "full_name": "__main__.allowances.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.allowances.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.allowances.addr": { - "decorators": [], - "pc": 141, - "type": "function" - }, - "__main__.allowances.addr.Args": { - "full_name": "__main__.allowances.addr.Args", - "members": { - "owner": { - "cairo_type": "felt", - "offset": 0 - }, - "spender": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.allowances.addr.ImplicitArgs": { - "full_name": "__main__.allowances.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.allowances.addr.Return": { - "full_name": "__main__.allowances.addr.Return", - "members": { - "res": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.allowances.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.allowances.addr.owner": { - "cairo_type": "felt", - "full_name": "__main__.allowances.addr.owner", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 141, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowances.addr.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.allowances.addr.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 141, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 7 - }, - "pc": 147, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 12 - }, - "pc": 150, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.allowances.addr.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.allowances.addr.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 141, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 41 - }, - "pc": 154, - "value": "[cast(ap + (-2), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowances.addr.res": { - "cairo_type": "felt", - "full_name": "__main__.allowances.addr.res", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 141, - "value": "cast(337994139936370667767799129369552596157394447336989834104582481799883947719, felt)" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 7 - }, - "pc": 147, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 12 - }, - "pc": 150, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 41 - }, - "pc": 154, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowances.addr.spender": { - "cairo_type": "felt", - "full_name": "__main__.allowances.addr.spender", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 141, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowances.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__.allowances.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__.allowances.read": { - "decorators": [], - "pc": 158, - "type": "function" - }, - "__main__.allowances.read.Args": { - "full_name": "__main__.allowances.read.Args", - "members": { - "owner": { - "cairo_type": "felt", - "offset": 0 - }, - "spender": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.allowances.read.ImplicitArgs": { - "full_name": "__main__.allowances.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.allowances.read.Return": { - "full_name": "__main__.allowances.read.Return", - "members": { - "res": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.allowances.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.allowances.read.__storage_var_temp0": { - "cairo_type": "felt", - "full_name": "__main__.allowances.read.__storage_var_temp0", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 57 - }, - "pc": 168, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 61 - }, - "pc": 172, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowances.read.owner": { - "cairo_type": "felt", - "full_name": "__main__.allowances.read.owner", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 158, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowances.read.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.allowances.read.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 158, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 50 - }, - "pc": 164, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 59 - }, - "pc": 170, - "value": "[cast(ap + (-1), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.allowances.read.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.allowances.read.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 158, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 50 - }, - "pc": 164, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 60 - }, - "pc": 171, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowances.read.spender": { - "cairo_type": "felt", - "full_name": "__main__.allowances.read.spender", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 158, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowances.read.storage_addr": { - "cairo_type": "felt", - "full_name": "__main__.allowances.read.storage_addr", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 50 - }, - "pc": 164, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowances.read.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.allowances.read.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 158, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 57 - }, - "pc": 168, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 58 - }, - "pc": 169, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__main__.allowances.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__.allowances.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__.allowances.write": { - "decorators": [], - "pc": 173, - "type": "function" - }, - "__main__.allowances.write.Args": { - "full_name": "__main__.allowances.write.Args", - "members": { - "owner": { - "cairo_type": "felt", - "offset": 0 - }, - "spender": { - "cairo_type": "felt", - "offset": 1 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.allowances.write.ImplicitArgs": { - "full_name": "__main__.allowances.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.allowances.write.Return": { - "full_name": "__main__.allowances.write.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.allowances.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.allowances.write.owner": { - "cairo_type": "felt", - "full_name": "__main__.allowances.write.owner", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 173, - "value": "[cast(fp + (-5), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowances.write.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.allowances.write.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 173, - "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 50 - }, - "pc": 179, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.allowances.write.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.allowances.write.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 173, - "value": "[cast(fp + (-6), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 50 - }, - "pc": 179, - "value": "[cast(ap + (-2), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowances.write.spender": { - "cairo_type": "felt", - "full_name": "__main__.allowances.write.spender", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 173, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowances.write.storage_addr": { - "cairo_type": "felt", - "full_name": "__main__.allowances.write.storage_addr", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 50 - }, - "pc": 179, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.allowances.write.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.allowances.write.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 173, - "value": "[cast(fp + (-8), felt**)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 57 - }, - "pc": 184, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__main__.allowances.write.value": { - "cairo_type": "felt", - "full_name": "__main__.allowances.write.value", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 173, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.approve": { - "decorators": ["external"], - "pc": 578, - "type": "function" - }, - "__main__.approve.Args": { - "full_name": "__main__.approve.Args", - "members": { - "amount": { - "cairo_type": "felt", - "offset": 1 - }, - "spender": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.approve.ImplicitArgs": { - "full_name": "__main__.approve.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.approve.Return": { - "full_name": "__main__.approve.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.approve.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.approve.amount": { - "cairo_type": "felt", - "full_name": "__main__.approve.amount", - "references": [ - { - "ap_tracking_data": { - "group": 45, - "offset": 0 - }, - "pc": 578, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.approve.caller": { - "cairo_type": "felt", - "full_name": "__main__.approve.caller", - "references": [ - { - "ap_tracking_data": { - "group": 45, - "offset": 6 - }, - "pc": 581, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.approve.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.approve.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 45, - "offset": 0 - }, - "pc": 578, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 45, - "offset": 73 - }, - "pc": 589, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.approve.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.approve.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 45, - "offset": 0 - }, - "pc": 578, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 45, - "offset": 73 - }, - "pc": 589, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.approve.spender": { - "cairo_type": "felt", - "full_name": "__main__.approve.spender", - "references": [ - { - "ap_tracking_data": { - "group": 45, - "offset": 0 - }, - "pc": 578, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "__main__.approve.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.approve.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 45, - "offset": 0 - }, - "pc": 578, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 45, - "offset": 6 - }, - "pc": 581, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 45, - "offset": 73 - }, - "pc": 589, - "value": "[cast(ap + (-3), felt**)]" - } - ], - "type": "reference" - }, - "__main__.assert_nn_le": { - "destination": "starkware.cairo.common.math.assert_nn_le", - "type": "alias" - }, - "__main__.balance_of": { - "decorators": ["view"], - "pc": 303, - "type": "function" - }, - "__main__.balance_of.Args": { - "full_name": "__main__.balance_of.Args", - "members": { - "user": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.balance_of.ImplicitArgs": { - "full_name": "__main__.balance_of.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.balance_of.Return": { - "full_name": "__main__.balance_of.Return", - "members": { - "res": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.balance_of.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.balance_of.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.balance_of.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 27, - "offset": 0 - }, - "pc": 303, - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 27, - "offset": 61 - }, - "pc": 309, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.balance_of.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.balance_of.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 27, - "offset": 0 - }, - "pc": 303, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 27, - "offset": 61 - }, - "pc": 309, - "value": "[cast(ap + (-2), felt*)]" - } - ], - "type": "reference" - }, - "__main__.balance_of.res": { - "cairo_type": "felt", - "full_name": "__main__.balance_of.res", - "references": [ - { - "ap_tracking_data": { - "group": 27, - "offset": 61 - }, - "pc": 309, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.balance_of.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.balance_of.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 27, - "offset": 0 - }, - "pc": 303, - "value": "[cast(fp + (-6), felt**)]" - }, - { - "ap_tracking_data": { - "group": 27, - "offset": 61 - }, - "pc": 309, - "value": "[cast(ap + (-4), felt**)]" - } - ], - "type": "reference" - }, - "__main__.balance_of.user": { - "cairo_type": "felt", - "full_name": "__main__.balance_of.user", - "references": [ - { - "ap_tracking_data": { - "group": 27, - "offset": 0 - }, - "pc": 303, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.balances": { - "type": "namespace" - }, - "__main__.balances.Args": { - "full_name": "__main__.balances.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.balances.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.balances.ImplicitArgs": { - "full_name": "__main__.balances.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.balances.Return": { - "full_name": "__main__.balances.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.balances.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.balances.addr": { - "decorators": [], - "pc": 100, - "type": "function" - }, - "__main__.balances.addr.Args": { - "full_name": "__main__.balances.addr.Args", - "members": { - "user": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.balances.addr.ImplicitArgs": { - "full_name": "__main__.balances.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.balances.addr.Return": { - "full_name": "__main__.balances.addr.Return", - "members": { - "res": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.balances.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.balances.addr.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.balances.addr.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 100, - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 7 - }, - "pc": 106, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.balances.addr.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.balances.addr.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 100, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 36 - }, - "pc": 110, - "value": "[cast(ap + (-2), felt*)]" - } - ], - "type": "reference" - }, - "__main__.balances.addr.res": { - "cairo_type": "felt", - "full_name": "__main__.balances.addr.res", - "references": [ - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 100, - "value": "cast(1065622543624526936256554561967983185612257046533136611876836524258158810564, felt)" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 7 - }, - "pc": 106, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 36 - }, - "pc": 110, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.balances.addr.user": { - "cairo_type": "felt", - "full_name": "__main__.balances.addr.user", - "references": [ - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 100, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.balances.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__.balances.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__.balances.read": { - "decorators": [], - "pc": 114, - "type": "function" - }, - "__main__.balances.read.Args": { - "full_name": "__main__.balances.read.Args", - "members": { - "user": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.balances.read.ImplicitArgs": { - "full_name": "__main__.balances.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.balances.read.Return": { - "full_name": "__main__.balances.read.Return", - "members": { - "res": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.balances.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.balances.read.__storage_var_temp0": { - "cairo_type": "felt", - "full_name": "__main__.balances.read.__storage_var_temp0", - "references": [ - { - "ap_tracking_data": { - "group": 10, - "offset": 51 - }, - "pc": 123, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 55 - }, - "pc": 127, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.balances.read.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.balances.read.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 114, - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 44 - }, - "pc": 119, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 53 - }, - "pc": 125, - "value": "[cast(ap + (-1), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.balances.read.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.balances.read.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 114, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 44 - }, - "pc": 119, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 54 - }, - "pc": 126, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.balances.read.storage_addr": { - "cairo_type": "felt", - "full_name": "__main__.balances.read.storage_addr", - "references": [ - { - "ap_tracking_data": { - "group": 10, - "offset": 44 - }, - "pc": 119, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.balances.read.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.balances.read.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 114, - "value": "[cast(fp + (-6), felt**)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 51 - }, - "pc": 123, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 52 - }, - "pc": 124, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__main__.balances.read.user": { - "cairo_type": "felt", - "full_name": "__main__.balances.read.user", - "references": [ - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 114, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.balances.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__.balances.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__.balances.write": { - "decorators": [], - "pc": 128, - "type": "function" - }, - "__main__.balances.write.Args": { - "full_name": "__main__.balances.write.Args", - "members": { - "user": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.balances.write.ImplicitArgs": { - "full_name": "__main__.balances.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.balances.write.Return": { - "full_name": "__main__.balances.write.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.balances.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.balances.write.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.balances.write.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 128, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 44 - }, - "pc": 133, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.balances.write.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.balances.write.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 128, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 44 - }, - "pc": 133, - "value": "[cast(ap + (-2), felt*)]" - } - ], - "type": "reference" - }, - "__main__.balances.write.storage_addr": { - "cairo_type": "felt", - "full_name": "__main__.balances.write.storage_addr", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 44 - }, - "pc": 133, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.balances.write.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.balances.write.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 128, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 51 - }, - "pc": 138, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__main__.balances.write.user": { - "cairo_type": "felt", - "full_name": "__main__.balances.write.user", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 128, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "__main__.balances.write.value": { - "cairo_type": "felt", - "full_name": "__main__.balances.write.value", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 128, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.decimals": { - "decorators": ["view"], - "pc": 217, - "type": "function" - }, - "__main__.decimals.Args": { - "full_name": "__main__.decimals.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.decimals.ImplicitArgs": { - "full_name": "__main__.decimals.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.decimals.Return": { - "full_name": "__main__.decimals.Return", - "members": { - "res": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.decimals.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.get_caller_address": { - "destination": "starkware.starknet.common.syscalls.get_caller_address", - "type": "alias" - }, - "__main__.get_total_supply": { - "decorators": ["view"], - "pc": 272, - "type": "function" - }, - "__main__.get_total_supply.Args": { - "full_name": "__main__.get_total_supply.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.get_total_supply.ImplicitArgs": { - "full_name": "__main__.get_total_supply.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.get_total_supply.Return": { - "full_name": "__main__.get_total_supply.Return", - "members": { - "res": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.get_total_supply.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.get_total_supply.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.get_total_supply.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 24, - "offset": 0 - }, - "pc": 272, - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 24, - "offset": 23 - }, - "pc": 277, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.get_total_supply.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.get_total_supply.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 24, - "offset": 0 - }, - "pc": 272, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 24, - "offset": 23 - }, - "pc": 277, - "value": "[cast(ap + (-2), felt*)]" - } - ], - "type": "reference" - }, - "__main__.get_total_supply.res": { - "cairo_type": "felt", - "full_name": "__main__.get_total_supply.res", - "references": [ - { - "ap_tracking_data": { - "group": 24, - "offset": 23 - }, - "pc": 277, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.get_total_supply.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.get_total_supply.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 24, - "offset": 0 - }, - "pc": 272, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 24, - "offset": 23 - }, - "pc": 277, - "value": "[cast(ap + (-4), felt**)]" - } - ], - "type": "reference" - }, - "__main__.initialize": { - "decorators": ["external"], - "pc": 375, - "type": "function" - }, - "__main__.initialize.Args": { - "full_name": "__main__.initialize.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialize.ImplicitArgs": { - "full_name": "__main__.initialize.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.initialize.Return": { - "full_name": "__main__.initialize.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialize.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.initialize._initialized": { - "cairo_type": "felt", - "full_name": "__main__.initialize._initialized", - "references": [ - { - "ap_tracking_data": { - "group": 33, - "offset": 23 - }, - "pc": 380, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.initialize.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.initialize.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 33, - "offset": 0 - }, - "pc": 375, - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 23 - }, - "pc": 380, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 45 - }, - "pc": 389, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 34, - "offset": 0 - }, - "pc": 400, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.initialize.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.initialize.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 33, - "offset": 0 - }, - "pc": 375, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 23 - }, - "pc": 380, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 45 - }, - "pc": 389, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 34, - "offset": 0 - }, - "pc": 400, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.initialize.sender": { - "cairo_type": "felt", - "full_name": "__main__.initialize.sender", - "references": [ - { - "ap_tracking_data": { - "group": 33, - "offset": 51 - }, - "pc": 392, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.initialize.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.initialize.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 33, - "offset": 0 - }, - "pc": 375, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 23 - }, - "pc": 380, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 45 - }, - "pc": 389, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 51 - }, - "pc": 392, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 34, - "offset": 0 - }, - "pc": 400, - "value": "[cast(ap + (-3), felt**)]" - } - ], - "type": "reference" - }, - "__main__.initialized": { - "type": "namespace" - }, - "__main__.initialized.Args": { - "full_name": "__main__.initialized.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialized.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.initialized.ImplicitArgs": { - "full_name": "__main__.initialized.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialized.Return": { - "full_name": "__main__.initialized.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialized.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.initialized.addr": { - "decorators": [], - "pc": 242, - "type": "function" - }, - "__main__.initialized.addr.Args": { - "full_name": "__main__.initialized.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialized.addr.ImplicitArgs": { - "full_name": "__main__.initialized.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.initialized.addr.Return": { - "full_name": "__main__.initialized.addr.Return", - "members": { - "res": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.initialized.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.initialized.addr.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.initialized.addr.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 21, - "offset": 0 - }, - "pc": 242, - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.initialized.addr.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.initialized.addr.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 21, - "offset": 0 - }, - "pc": 242, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.initialized.addr.res": { - "cairo_type": "felt", - "full_name": "__main__.initialized.addr.res", - "references": [ - { - "ap_tracking_data": { - "group": 21, - "offset": 0 - }, - "pc": 242, - "value": "cast(1697461057326310581967816530165551571743938660869987744467005324703617544296, felt)" - } - ], - "type": "reference" - }, - "__main__.initialized.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__.initialized.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__.initialized.read": { - "decorators": [], - "pc": 247, - "type": "function" - }, - "__main__.initialized.read.Args": { - "full_name": "__main__.initialized.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialized.read.ImplicitArgs": { - "full_name": "__main__.initialized.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.initialized.read.Return": { - "full_name": "__main__.initialized.read.Return", - "members": { - "res": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.initialized.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.initialized.read.__storage_var_temp0": { - "cairo_type": "felt", - "full_name": "__main__.initialized.read.__storage_var_temp0", - "references": [ - { - "ap_tracking_data": { - "group": 22, - "offset": 14 - }, - "pc": 255, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 18 - }, - "pc": 259, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.initialized.read.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.initialized.read.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 22, - "offset": 0 - }, - "pc": 247, - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 7 - }, - "pc": 251, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 16 - }, - "pc": 257, - "value": "[cast(ap + (-1), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.initialized.read.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.initialized.read.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 22, - "offset": 0 - }, - "pc": 247, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 7 - }, - "pc": 251, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 17 - }, - "pc": 258, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.initialized.read.storage_addr": { - "cairo_type": "felt", - "full_name": "__main__.initialized.read.storage_addr", - "references": [ - { - "ap_tracking_data": { - "group": 22, - "offset": 7 - }, - "pc": 251, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.initialized.read.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.initialized.read.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 22, - "offset": 0 - }, - "pc": 247, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 14 - }, - "pc": 255, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 15 - }, - "pc": 256, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__main__.initialized.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__.initialized.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__.initialized.write": { - "decorators": [], - "pc": 260, - "type": "function" - }, - "__main__.initialized.write.Args": { - "full_name": "__main__.initialized.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.initialized.write.ImplicitArgs": { - "full_name": "__main__.initialized.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.initialized.write.Return": { - "full_name": "__main__.initialized.write.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialized.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.initialized.write.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.initialized.write.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 23, - "offset": 0 - }, - "pc": 260, - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 23, - "offset": 7 - }, - "pc": 264, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.initialized.write.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.initialized.write.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 23, - "offset": 0 - }, - "pc": 260, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 23, - "offset": 7 - }, - "pc": 264, - "value": "[cast(ap + (-2), felt*)]" - } - ], - "type": "reference" - }, - "__main__.initialized.write.storage_addr": { - "cairo_type": "felt", - "full_name": "__main__.initialized.write.storage_addr", - "references": [ - { - "ap_tracking_data": { - "group": 23, - "offset": 7 - }, - "pc": 264, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.initialized.write.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.initialized.write.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 23, - "offset": 0 - }, - "pc": 260, - "value": "[cast(fp + (-6), felt**)]" - }, - { - "ap_tracking_data": { - "group": 23, - "offset": 14 - }, - "pc": 269, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__main__.initialized.write.value": { - "cairo_type": "felt", - "full_name": "__main__.initialized.write.value", - "references": [ - { - "ap_tracking_data": { - "group": 23, - "offset": 0 - }, - "pc": 260, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.mint": { - "decorators": ["external"], - "pc": 468, - "type": "function" - }, - "__main__.mint.Args": { - "full_name": "__main__.mint.Args", - "members": { - "amount": { - "cairo_type": "felt", - "offset": 1 - }, - "recipient": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.mint.ImplicitArgs": { - "full_name": "__main__.mint.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.mint.Return": { - "full_name": "__main__.mint.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.mint.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.mint.amount": { - "cairo_type": "felt", - "full_name": "__main__.mint.amount", - "references": [ - { - "ap_tracking_data": { - "group": 39, - "offset": 0 - }, - "pc": 468, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.mint.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.mint.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 39, - "offset": 0 - }, - "pc": 468, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 39, - "offset": 170 - }, - "pc": 475, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.mint.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.mint.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 39, - "offset": 0 - }, - "pc": 468, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 39, - "offset": 170 - }, - "pc": 475, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.mint.recipient": { - "cairo_type": "felt", - "full_name": "__main__.mint.recipient", - "references": [ - { - "ap_tracking_data": { - "group": 39, - "offset": 0 - }, - "pc": 468, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "__main__.mint.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.mint.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 39, - "offset": 0 - }, - "pc": 468, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 39, - "offset": 170 - }, - "pc": 475, - "value": "[cast(ap + (-3), felt**)]" - } - ], - "type": "reference" - }, - "__main__.total_supply": { - "type": "namespace" - }, - "__main__.total_supply.Args": { - "full_name": "__main__.total_supply.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.total_supply.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.total_supply.ImplicitArgs": { - "full_name": "__main__.total_supply.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.total_supply.Return": { - "full_name": "__main__.total_supply.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.total_supply.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.total_supply.addr": { - "decorators": [], - "pc": 187, - "type": "function" - }, - "__main__.total_supply.addr.Args": { - "full_name": "__main__.total_supply.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.total_supply.addr.ImplicitArgs": { - "full_name": "__main__.total_supply.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.total_supply.addr.Return": { - "full_name": "__main__.total_supply.addr.Return", - "members": { - "res": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.total_supply.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.total_supply.addr.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.total_supply.addr.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 15, - "offset": 0 - }, - "pc": 187, - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.total_supply.addr.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.total_supply.addr.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 15, - "offset": 0 - }, - "pc": 187, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.total_supply.addr.res": { - "cairo_type": "felt", - "full_name": "__main__.total_supply.addr.res", - "references": [ - { - "ap_tracking_data": { - "group": 15, - "offset": 0 - }, - "pc": 187, - "value": "cast(603278275252936218847294002513349627170936020082667936993356353388973422646, felt)" - } - ], - "type": "reference" - }, - "__main__.total_supply.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__.total_supply.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__.total_supply.read": { - "decorators": [], - "pc": 192, - "type": "function" - }, - "__main__.total_supply.read.Args": { - "full_name": "__main__.total_supply.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.total_supply.read.ImplicitArgs": { - "full_name": "__main__.total_supply.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.total_supply.read.Return": { - "full_name": "__main__.total_supply.read.Return", - "members": { - "res": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.total_supply.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.total_supply.read.__storage_var_temp0": { - "cairo_type": "felt", - "full_name": "__main__.total_supply.read.__storage_var_temp0", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 14 - }, - "pc": 200, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 18 - }, - "pc": 204, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.total_supply.read.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.total_supply.read.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 192, - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 7 - }, - "pc": 196, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 16 - }, - "pc": 202, - "value": "[cast(ap + (-1), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.total_supply.read.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.total_supply.read.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 192, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 7 - }, - "pc": 196, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 17 - }, - "pc": 203, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.total_supply.read.storage_addr": { - "cairo_type": "felt", - "full_name": "__main__.total_supply.read.storage_addr", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 7 - }, - "pc": 196, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.total_supply.read.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.total_supply.read.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 192, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 14 - }, - "pc": 200, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 15 - }, - "pc": 201, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__main__.total_supply.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__.total_supply.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__.total_supply.write": { - "decorators": [], - "pc": 205, - "type": "function" - }, - "__main__.total_supply.write.Args": { - "full_name": "__main__.total_supply.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.total_supply.write.ImplicitArgs": { - "full_name": "__main__.total_supply.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.total_supply.write.Return": { - "full_name": "__main__.total_supply.write.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.total_supply.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.total_supply.write.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.total_supply.write.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 17, - "offset": 0 - }, - "pc": 205, - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 7 - }, - "pc": 209, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.total_supply.write.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.total_supply.write.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 17, - "offset": 0 - }, - "pc": 205, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 7 - }, - "pc": 209, - "value": "[cast(ap + (-2), felt*)]" - } - ], - "type": "reference" - }, - "__main__.total_supply.write.storage_addr": { - "cairo_type": "felt", - "full_name": "__main__.total_supply.write.storage_addr", - "references": [ - { - "ap_tracking_data": { - "group": 17, - "offset": 7 - }, - "pc": 209, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.total_supply.write.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.total_supply.write.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 17, - "offset": 0 - }, - "pc": 205, - "value": "[cast(fp + (-6), felt**)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 14 - }, - "pc": 214, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__main__.total_supply.write.value": { - "cairo_type": "felt", - "full_name": "__main__.total_supply.write.value", - "references": [ - { - "ap_tracking_data": { - "group": 17, - "offset": 0 - }, - "pc": 205, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.transfer": { - "decorators": ["external"], - "pc": 496, - "type": "function" - }, - "__main__.transfer.Args": { - "full_name": "__main__.transfer.Args", - "members": { - "amount": { - "cairo_type": "felt", - "offset": 1 - }, - "recipient": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.transfer.ImplicitArgs": { - "full_name": "__main__.transfer.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.transfer.Return": { - "full_name": "__main__.transfer.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.transfer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.transfer.amount": { - "cairo_type": "felt", - "full_name": "__main__.transfer.amount", - "references": [ - { - "ap_tracking_data": { - "group": 41, - "offset": 0 - }, - "pc": 496, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.transfer.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.transfer.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 41, - "offset": 0 - }, - "pc": 496, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 41, - "offset": 272 - }, - "pc": 507, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.transfer.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.transfer.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 41, - "offset": 0 - }, - "pc": 496, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 41, - "offset": 272 - }, - "pc": 507, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.transfer.recipient": { - "cairo_type": "felt", - "full_name": "__main__.transfer.recipient", - "references": [ - { - "ap_tracking_data": { - "group": 41, - "offset": 0 - }, - "pc": 496, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "__main__.transfer.sender": { - "cairo_type": "felt", - "full_name": "__main__.transfer.sender", - "references": [ - { - "ap_tracking_data": { - "group": 41, - "offset": 6 - }, - "pc": 499, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.transfer.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.transfer.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 41, - "offset": 0 - }, - "pc": 496, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 41, - "offset": 6 - }, - "pc": 499, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 41, - "offset": 272 - }, - "pc": 507, - "value": "[cast(ap + (-3), felt**)]" - } - ], - "type": "reference" - }, - "__main__.transfer_from": { - "decorators": ["external"], - "pc": 528, - "type": "function" - }, - "__main__.transfer_from.Args": { - "full_name": "__main__.transfer_from.Args", - "members": { - "amount": { - "cairo_type": "felt", - "offset": 2 - }, - "recipient": { - "cairo_type": "felt", - "offset": 1 - }, - "sender": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.transfer_from.ImplicitArgs": { - "full_name": "__main__.transfer_from.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.transfer_from.Return": { - "full_name": "__main__.transfer_from.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.transfer_from.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.transfer_from.amount": { - "cairo_type": "felt", - "full_name": "__main__.transfer_from.amount", - "references": [ - { - "ap_tracking_data": { - "group": 43, - "offset": 0 - }, - "pc": 528, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__main__.transfer_from.caller": { - "cairo_type": "felt", - "full_name": "__main__.transfer_from.caller", - "references": [ - { - "ap_tracking_data": { - "group": 43, - "offset": 6 - }, - "pc": 531, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.transfer_from.caller_allowance": { - "cairo_type": "felt", - "full_name": "__main__.transfer_from.caller_allowance", - "references": [ - { - "ap_tracking_data": { - "group": 43, - "offset": 74 - }, - "pc": 538, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.transfer_from.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.transfer_from.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 43, - "offset": 0 - }, - "pc": 528, - "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 74 - }, - "pc": 538, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 359 - }, - "pc": 551, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 423 - }, - "pc": 556, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__main__.transfer_from.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.transfer_from.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 43, - "offset": 0 - }, - "pc": 528, - "value": "[cast(fp + (-6), felt*)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 74 - }, - "pc": 538, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 93 - }, - "pc": 543, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 359 - }, - "pc": 551, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 423 - }, - "pc": 556, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__main__.transfer_from.recipient": { - "cairo_type": "felt", - "full_name": "__main__.transfer_from.recipient", - "references": [ - { - "ap_tracking_data": { - "group": 43, - "offset": 0 - }, - "pc": 528, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "__main__.transfer_from.sender": { - "cairo_type": "felt", - "full_name": "__main__.transfer_from.sender", - "references": [ - { - "ap_tracking_data": { - "group": 43, - "offset": 0 - }, - "pc": 528, - "value": "[cast(fp + (-5), felt*)]" - } - ], - "type": "reference" - }, - "__main__.transfer_from.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.transfer_from.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 43, - "offset": 0 - }, - "pc": 528, - "value": "[cast(fp + (-8), felt**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 6 - }, - "pc": 531, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 74 - }, - "pc": 538, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 359 - }, - "pc": 551, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 423 - }, - "pc": 556, - "value": "[cast(ap + (-3), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.allowance": { - "decorators": ["view"], - "pc": 355, - "type": "function" - }, - "__wrappers__.allowance.Args": { - "full_name": "__wrappers__.allowance.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.allowance.ImplicitArgs": { - "full_name": "__wrappers__.allowance.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.allowance.Return": { - "full_name": "__wrappers__.allowance.Return", - "members": { - "ecdsa_ptr": { - "cairo_type": "felt", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "retdata": { - "cairo_type": "felt*", - "offset": 5 - }, - "size": { - "cairo_type": "felt", - "offset": 4 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "__wrappers__.allowance.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.allowance.__calldata_actual_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.allowance.__calldata_actual_size", - "references": [ - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "cast([fp + (-3)] + 2 - [fp + (-3)], felt)" - } - ], - "type": "reference" - }, - "__wrappers__.allowance.__calldata_arg_owner": { - "cairo_type": "felt", - "full_name": "__wrappers__.allowance.__calldata_arg_owner", - "references": [ - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "[cast([fp + (-3)], felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.allowance.__calldata_arg_spender": { - "cairo_type": "felt", - "full_name": "__wrappers__.allowance.__calldata_arg_spender", - "references": [ - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "[cast([fp + (-3)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.allowance.__calldata_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.allowance.__calldata_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "cast([fp + (-3)] + 1, felt*)" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "cast([fp + (-3)] + 2, felt*)" - } - ], - "type": "reference" - }, - "__wrappers__.allowance.__temp16": { - "cairo_type": "felt", - "full_name": "__wrappers__.allowance.__temp16", - "references": [ - { - "ap_tracking_data": { - "group": 32, - "offset": 1 - }, - "pc": 357, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.allowance.__wrapped_func": { - "destination": "__main__.allowance", - "type": "alias" - }, - "__wrappers__.allowance.ecdsa_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.allowance.ecdsa_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "[cast([fp + (-5)] + 3, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.allowance.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__wrappers__.allowance.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 76 - }, - "pc": 365, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__wrappers__.allowance.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.allowance.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 76 - }, - "pc": 365, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 84 - }, - "pc": 368, - "value": "[cast(ap + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.allowance.ret_struct": { - "cairo_type": "__main__.allowance.Return", - "full_name": "__wrappers__.allowance.ret_struct", - "references": [ - { - "ap_tracking_data": { - "group": 32, - "offset": 76 - }, - "pc": 365, - "value": "[cast(ap + (-1), __main__.allowance.Return*)]" - } - ], - "type": "reference" - }, - "__wrappers__.allowance.retdata": { - "cairo_type": "felt*", - "full_name": "__wrappers__.allowance.retdata", - "references": [ - { - "ap_tracking_data": { - "group": 32, - "offset": 84 - }, - "pc": 368, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.allowance.retdata_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.allowance.retdata_size", - "references": [ - { - "ap_tracking_data": { - "group": 32, - "offset": 84 - }, - "pc": 368, - "value": "[cast(ap + (-2), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.allowance.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.allowance.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 76 - }, - "pc": 365, - "value": "[cast(ap + (-4), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.allowance_encode_return": { - "decorators": [], - "pc": 346, - "type": "function" - }, - "__wrappers__.allowance_encode_return.Args": { - "full_name": "__wrappers__.allowance_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_struct": { - "cairo_type": "__main__.allowance.Return", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.allowance_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.allowance_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.allowance_encode_return.Return": { - "full_name": "__wrappers__.allowance_encode_return.Return", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 2 - }, - "data_len": { - "cairo_type": "felt", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.allowance_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.allowance_encode_return.__return_value_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.allowance_encode_return.__return_value_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 31, - "offset": 1 - }, - "pc": 348, - "value": "[cast(fp, felt**)]" - }, - { - "ap_tracking_data": { - "group": 31, - "offset": 1 - }, - "pc": 349, - "value": "cast([fp] + 1, felt*)" - } - ], - "type": "reference" - }, - "__wrappers__.allowance_encode_return.__return_value_ptr_start": { - "cairo_type": "felt*", - "full_name": "__wrappers__.allowance_encode_return.__return_value_ptr_start", - "references": [ - { - "ap_tracking_data": { - "group": 31, - "offset": 1 - }, - "pc": 348, - "value": "[cast(fp, felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.allowance_encode_return.__temp15": { - "cairo_type": "felt", - "full_name": "__wrappers__.allowance_encode_return.__temp15", - "references": [ - { - "ap_tracking_data": { - "group": 31, - "offset": 2 - }, - "pc": 351, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.allowance_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.allowance_encode_return.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.allowance_encode_return.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 31, - "offset": 0 - }, - "pc": 346, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.allowance_encode_return.ret_struct": { - "cairo_type": "__main__.allowance.Return", - "full_name": "__wrappers__.allowance_encode_return.ret_struct", - "references": [ - { - "ap_tracking_data": { - "group": 31, - "offset": 0 - }, - "pc": 346, - "value": "[cast(fp + (-4), __main__.allowance.Return*)]" - } - ], - "type": "reference" - }, - "__wrappers__.approve": { - "decorators": ["external"], - "pc": 590, - "type": "function" - }, - "__wrappers__.approve.Args": { - "full_name": "__wrappers__.approve.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.approve.ImplicitArgs": { - "full_name": "__wrappers__.approve.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.approve.Return": { - "full_name": "__wrappers__.approve.Return", - "members": { - "ecdsa_ptr": { - "cairo_type": "felt", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "retdata": { - "cairo_type": "felt*", - "offset": 5 - }, - "size": { - "cairo_type": "felt", - "offset": 4 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "__wrappers__.approve.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.approve.__calldata_actual_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.approve.__calldata_actual_size", - "references": [ - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "cast([fp + (-3)] + 2 - [fp + (-3)], felt)" - } - ], - "type": "reference" - }, - "__wrappers__.approve.__calldata_arg_amount": { - "cairo_type": "felt", - "full_name": "__wrappers__.approve.__calldata_arg_amount", - "references": [ - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "[cast([fp + (-3)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.approve.__calldata_arg_spender": { - "cairo_type": "felt", - "full_name": "__wrappers__.approve.__calldata_arg_spender", - "references": [ - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "[cast([fp + (-3)], felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.approve.__calldata_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.approve.__calldata_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "cast([fp + (-3)] + 1, felt*)" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "cast([fp + (-3)] + 2, felt*)" - } - ], - "type": "reference" - }, - "__wrappers__.approve.__temp20": { - "cairo_type": "felt", - "full_name": "__wrappers__.approve.__temp20", - "references": [ - { - "ap_tracking_data": { - "group": 46, - "offset": 1 - }, - "pc": 592, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.approve.__wrapped_func": { - "destination": "__main__.approve", - "type": "alias" - }, - "__wrappers__.approve.ecdsa_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.approve.ecdsa_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "[cast([fp + (-5)] + 3, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.approve.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__wrappers__.approve.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 81 - }, - "pc": 600, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__wrappers__.approve.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.approve.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 81 - }, - "pc": 600, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.approve.ret_struct": { - "cairo_type": "__main__.approve.Return", - "full_name": "__wrappers__.approve.ret_struct", - "references": [ - { - "ap_tracking_data": { - "group": 46, - "offset": 81 - }, - "pc": 600, - "value": "[cast(ap + 0, __main__.approve.Return*)]" - } - ], - "type": "reference" - }, - "__wrappers__.approve.retdata": { - "cairo_type": "felt*", - "full_name": "__wrappers__.approve.retdata", - "references": [ - { - "ap_tracking_data": { - "group": 46, - "offset": 82 - }, - "pc": 602, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.approve.retdata_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.approve.retdata_size", - "references": [ - { - "ap_tracking_data": { - "group": 46, - "offset": 82 - }, - "pc": 602, - "value": "cast(0, felt)" - } - ], - "type": "reference" - }, - "__wrappers__.approve.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.approve.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 81 - }, - "pc": 600, - "value": "[cast(ap + (-3), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.approve_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.balance_of": { - "decorators": ["view"], - "pc": 319, - "type": "function" - }, - "__wrappers__.balance_of.Args": { - "full_name": "__wrappers__.balance_of.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.balance_of.ImplicitArgs": { - "full_name": "__wrappers__.balance_of.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.balance_of.Return": { - "full_name": "__wrappers__.balance_of.Return", - "members": { - "ecdsa_ptr": { - "cairo_type": "felt", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "retdata": { - "cairo_type": "felt*", - "offset": 5 - }, - "size": { - "cairo_type": "felt", - "offset": 4 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "__wrappers__.balance_of.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.balance_of.__calldata_actual_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.balance_of.__calldata_actual_size", - "references": [ - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "cast([fp + (-3)] + 1 - [fp + (-3)], felt)" - } - ], - "type": "reference" - }, - "__wrappers__.balance_of.__calldata_arg_user": { - "cairo_type": "felt", - "full_name": "__wrappers__.balance_of.__calldata_arg_user", - "references": [ - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "[cast([fp + (-3)], felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.balance_of.__calldata_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.balance_of.__calldata_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "cast([fp + (-3)] + 1, felt*)" - } - ], - "type": "reference" - }, - "__wrappers__.balance_of.__temp14": { - "cairo_type": "felt", - "full_name": "__wrappers__.balance_of.__temp14", - "references": [ - { - "ap_tracking_data": { - "group": 29, - "offset": 1 - }, - "pc": 321, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.balance_of.__wrapped_func": { - "destination": "__main__.balance_of", - "type": "alias" - }, - "__wrappers__.balance_of.ecdsa_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.balance_of.ecdsa_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "[cast([fp + (-5)] + 3, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.balance_of.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__wrappers__.balance_of.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 68 - }, - "pc": 328, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__wrappers__.balance_of.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.balance_of.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 68 - }, - "pc": 328, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 76 - }, - "pc": 331, - "value": "[cast(ap + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.balance_of.ret_struct": { - "cairo_type": "__main__.balance_of.Return", - "full_name": "__wrappers__.balance_of.ret_struct", - "references": [ - { - "ap_tracking_data": { - "group": 29, - "offset": 68 - }, - "pc": 328, - "value": "[cast(ap + (-1), __main__.balance_of.Return*)]" - } - ], - "type": "reference" - }, - "__wrappers__.balance_of.retdata": { - "cairo_type": "felt*", - "full_name": "__wrappers__.balance_of.retdata", - "references": [ - { - "ap_tracking_data": { - "group": 29, - "offset": 76 - }, - "pc": 331, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.balance_of.retdata_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.balance_of.retdata_size", - "references": [ - { - "ap_tracking_data": { - "group": 29, - "offset": 76 - }, - "pc": 331, - "value": "[cast(ap + (-2), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.balance_of.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.balance_of.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 68 - }, - "pc": 328, - "value": "[cast(ap + (-4), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.balance_of_encode_return": { - "decorators": [], - "pc": 310, - "type": "function" - }, - "__wrappers__.balance_of_encode_return.Args": { - "full_name": "__wrappers__.balance_of_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_struct": { - "cairo_type": "__main__.balance_of.Return", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.balance_of_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.balance_of_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.balance_of_encode_return.Return": { - "full_name": "__wrappers__.balance_of_encode_return.Return", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 2 - }, - "data_len": { - "cairo_type": "felt", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.balance_of_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.balance_of_encode_return.__return_value_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.balance_of_encode_return.__return_value_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 28, - "offset": 1 - }, - "pc": 312, - "value": "[cast(fp, felt**)]" - }, - { - "ap_tracking_data": { - "group": 28, - "offset": 1 - }, - "pc": 313, - "value": "cast([fp] + 1, felt*)" - } - ], - "type": "reference" - }, - "__wrappers__.balance_of_encode_return.__return_value_ptr_start": { - "cairo_type": "felt*", - "full_name": "__wrappers__.balance_of_encode_return.__return_value_ptr_start", - "references": [ - { - "ap_tracking_data": { - "group": 28, - "offset": 1 - }, - "pc": 312, - "value": "[cast(fp, felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.balance_of_encode_return.__temp13": { - "cairo_type": "felt", - "full_name": "__wrappers__.balance_of_encode_return.__temp13", - "references": [ - { - "ap_tracking_data": { - "group": 28, - "offset": 2 - }, - "pc": 315, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.balance_of_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.balance_of_encode_return.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.balance_of_encode_return.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 28, - "offset": 0 - }, - "pc": 310, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.balance_of_encode_return.ret_struct": { - "cairo_type": "__main__.balance_of.Return", - "full_name": "__wrappers__.balance_of_encode_return.ret_struct", - "references": [ - { - "ap_tracking_data": { - "group": 28, - "offset": 0 - }, - "pc": 310, - "value": "[cast(fp + (-4), __main__.balance_of.Return*)]" - } - ], - "type": "reference" - }, - "__wrappers__.decimals": { - "decorators": ["view"], - "pc": 229, - "type": "function" - }, - "__wrappers__.decimals.Args": { - "full_name": "__wrappers__.decimals.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.decimals.ImplicitArgs": { - "full_name": "__wrappers__.decimals.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.decimals.Return": { - "full_name": "__wrappers__.decimals.Return", - "members": { - "ecdsa_ptr": { - "cairo_type": "felt", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "retdata": { - "cairo_type": "felt*", - "offset": 5 - }, - "size": { - "cairo_type": "felt", - "offset": 4 - }, - "syscall_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "__wrappers__.decimals.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.decimals.__calldata_actual_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.decimals.__calldata_actual_size", - "references": [ - { - "ap_tracking_data": { - "group": 20, - "offset": 0 - }, - "pc": 229, - "value": "cast([fp + (-3)] - [fp + (-3)], felt)" - } - ], - "type": "reference" - }, - "__wrappers__.decimals.__calldata_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.decimals.__calldata_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 20, - "offset": 0 - }, - "pc": 229, - "value": "[cast(fp + (-3), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.decimals.__wrapped_func": { - "destination": "__main__.decimals", - "type": "alias" - }, - "__wrappers__.decimals.ecdsa_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.decimals.ecdsa_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 20, - "offset": 0 - }, - "pc": 229, - "value": "[cast([fp + (-5)] + 3, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.decimals.pedersen_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.decimals.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 20, - "offset": 0 - }, - "pc": 229, - "value": "[cast([fp + (-5)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.decimals.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.decimals.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 20, - "offset": 0 - }, - "pc": 229, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 20, - "offset": 11 - }, - "pc": 235, - "value": "[cast(ap + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.decimals.ret_struct": { - "cairo_type": "__main__.decimals.Return", - "full_name": "__wrappers__.decimals.ret_struct", - "references": [ - { - "ap_tracking_data": { - "group": 20, - "offset": 3 - }, - "pc": 232, - "value": "[cast(ap + (-1), __main__.decimals.Return*)]" - } - ], - "type": "reference" - }, - "__wrappers__.decimals.retdata": { - "cairo_type": "felt*", - "full_name": "__wrappers__.decimals.retdata", - "references": [ - { - "ap_tracking_data": { - "group": 20, - "offset": 11 - }, - "pc": 235, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.decimals.retdata_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.decimals.retdata_size", - "references": [ - { - "ap_tracking_data": { - "group": 20, - "offset": 11 - }, - "pc": 235, - "value": "[cast(ap + (-2), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.decimals.syscall_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.decimals.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 20, - "offset": 0 - }, - "pc": 229, - "value": "[cast([fp + (-5)], felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.decimals_encode_return": { - "decorators": [], - "pc": 220, - "type": "function" - }, - "__wrappers__.decimals_encode_return.Args": { - "full_name": "__wrappers__.decimals_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_struct": { - "cairo_type": "__main__.decimals.Return", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.decimals_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.decimals_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.decimals_encode_return.Return": { - "full_name": "__wrappers__.decimals_encode_return.Return", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 2 - }, - "data_len": { - "cairo_type": "felt", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.decimals_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.decimals_encode_return.__return_value_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.decimals_encode_return.__return_value_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 19, - "offset": 1 - }, - "pc": 222, - "value": "[cast(fp, felt**)]" - }, - { - "ap_tracking_data": { - "group": 19, - "offset": 1 - }, - "pc": 223, - "value": "cast([fp] + 1, felt*)" - } - ], - "type": "reference" - }, - "__wrappers__.decimals_encode_return.__return_value_ptr_start": { - "cairo_type": "felt*", - "full_name": "__wrappers__.decimals_encode_return.__return_value_ptr_start", - "references": [ - { - "ap_tracking_data": { - "group": 19, - "offset": 1 - }, - "pc": 222, - "value": "[cast(fp, felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.decimals_encode_return.__temp11": { - "cairo_type": "felt", - "full_name": "__wrappers__.decimals_encode_return.__temp11", - "references": [ - { - "ap_tracking_data": { - "group": 19, - "offset": 2 - }, - "pc": 225, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.decimals_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.decimals_encode_return.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.decimals_encode_return.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 19, - "offset": 0 - }, - "pc": 220, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.decimals_encode_return.ret_struct": { - "cairo_type": "__main__.decimals.Return", - "full_name": "__wrappers__.decimals_encode_return.ret_struct", - "references": [ - { - "ap_tracking_data": { - "group": 19, - "offset": 0 - }, - "pc": 220, - "value": "[cast(fp + (-4), __main__.decimals.Return*)]" - } - ], - "type": "reference" - }, - "__wrappers__.get_total_supply": { - "decorators": ["view"], - "pc": 287, - "type": "function" - }, - "__wrappers__.get_total_supply.Args": { - "full_name": "__wrappers__.get_total_supply.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.get_total_supply.ImplicitArgs": { - "full_name": "__wrappers__.get_total_supply.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.get_total_supply.Return": { - "full_name": "__wrappers__.get_total_supply.Return", - "members": { - "ecdsa_ptr": { - "cairo_type": "felt", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "retdata": { - "cairo_type": "felt*", - "offset": 5 - }, - "size": { - "cairo_type": "felt", - "offset": 4 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "__wrappers__.get_total_supply.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.get_total_supply.__calldata_actual_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.get_total_supply.__calldata_actual_size", - "references": [ - { - "ap_tracking_data": { - "group": 26, - "offset": 0 - }, - "pc": 287, - "value": "cast([fp + (-3)] - [fp + (-3)], felt)" - } - ], - "type": "reference" - }, - "__wrappers__.get_total_supply.__calldata_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.get_total_supply.__calldata_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 26, - "offset": 0 - }, - "pc": 287, - "value": "[cast(fp + (-3), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.get_total_supply.__wrapped_func": { - "destination": "__main__.get_total_supply", - "type": "alias" - }, - "__wrappers__.get_total_supply.ecdsa_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.get_total_supply.ecdsa_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 26, - "offset": 0 - }, - "pc": 287, - "value": "[cast([fp + (-5)] + 3, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.get_total_supply.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__wrappers__.get_total_supply.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 26, - "offset": 0 - }, - "pc": 287, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 28 - }, - "pc": 293, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__wrappers__.get_total_supply.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.get_total_supply.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 26, - "offset": 0 - }, - "pc": 287, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 28 - }, - "pc": 293, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 36 - }, - "pc": 296, - "value": "[cast(ap + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.get_total_supply.ret_struct": { - "cairo_type": "__main__.get_total_supply.Return", - "full_name": "__wrappers__.get_total_supply.ret_struct", - "references": [ - { - "ap_tracking_data": { - "group": 26, - "offset": 28 - }, - "pc": 293, - "value": "[cast(ap + (-1), __main__.get_total_supply.Return*)]" - } - ], - "type": "reference" - }, - "__wrappers__.get_total_supply.retdata": { - "cairo_type": "felt*", - "full_name": "__wrappers__.get_total_supply.retdata", - "references": [ - { - "ap_tracking_data": { - "group": 26, - "offset": 36 - }, - "pc": 296, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.get_total_supply.retdata_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.get_total_supply.retdata_size", - "references": [ - { - "ap_tracking_data": { - "group": 26, - "offset": 36 - }, - "pc": 296, - "value": "[cast(ap + (-2), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.get_total_supply.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.get_total_supply.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 26, - "offset": 0 - }, - "pc": 287, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 28 - }, - "pc": 293, - "value": "[cast(ap + (-4), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.get_total_supply_encode_return": { - "decorators": [], - "pc": 278, - "type": "function" - }, - "__wrappers__.get_total_supply_encode_return.Args": { - "full_name": "__wrappers__.get_total_supply_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_struct": { - "cairo_type": "__main__.get_total_supply.Return", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.get_total_supply_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.get_total_supply_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.get_total_supply_encode_return.Return": { - "full_name": "__wrappers__.get_total_supply_encode_return.Return", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 2 - }, - "data_len": { - "cairo_type": "felt", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.get_total_supply_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.get_total_supply_encode_return.__return_value_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.get_total_supply_encode_return.__return_value_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 25, - "offset": 1 - }, - "pc": 280, - "value": "[cast(fp, felt**)]" - }, - { - "ap_tracking_data": { - "group": 25, - "offset": 1 - }, - "pc": 281, - "value": "cast([fp] + 1, felt*)" - } - ], - "type": "reference" - }, - "__wrappers__.get_total_supply_encode_return.__return_value_ptr_start": { - "cairo_type": "felt*", - "full_name": "__wrappers__.get_total_supply_encode_return.__return_value_ptr_start", - "references": [ - { - "ap_tracking_data": { - "group": 25, - "offset": 1 - }, - "pc": 280, - "value": "[cast(fp, felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.get_total_supply_encode_return.__temp12": { - "cairo_type": "felt", - "full_name": "__wrappers__.get_total_supply_encode_return.__temp12", - "references": [ - { - "ap_tracking_data": { - "group": 25, - "offset": 2 - }, - "pc": 283, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.get_total_supply_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.get_total_supply_encode_return.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.get_total_supply_encode_return.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 25, - "offset": 0 - }, - "pc": 278, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.get_total_supply_encode_return.ret_struct": { - "cairo_type": "__main__.get_total_supply.Return", - "full_name": "__wrappers__.get_total_supply_encode_return.ret_struct", - "references": [ - { - "ap_tracking_data": { - "group": 25, - "offset": 0 - }, - "pc": 278, - "value": "[cast(fp + (-4), __main__.get_total_supply.Return*)]" - } - ], - "type": "reference" - }, - "__wrappers__.initialize": { - "decorators": ["external"], - "pc": 401, - "type": "function" - }, - "__wrappers__.initialize.Args": { - "full_name": "__wrappers__.initialize.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.initialize.ImplicitArgs": { - "full_name": "__wrappers__.initialize.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.initialize.Return": { - "full_name": "__wrappers__.initialize.Return", - "members": { - "ecdsa_ptr": { - "cairo_type": "felt", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "retdata": { - "cairo_type": "felt*", - "offset": 5 - }, - "size": { - "cairo_type": "felt", - "offset": 4 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "__wrappers__.initialize.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.initialize.__calldata_actual_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.initialize.__calldata_actual_size", - "references": [ - { - "ap_tracking_data": { - "group": 35, - "offset": 0 - }, - "pc": 401, - "value": "cast([fp + (-3)] - [fp + (-3)], felt)" - } - ], - "type": "reference" - }, - "__wrappers__.initialize.__calldata_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.initialize.__calldata_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 35, - "offset": 0 - }, - "pc": 401, - "value": "[cast(fp + (-3), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.initialize.__wrapped_func": { - "destination": "__main__.initialize", - "type": "alias" - }, - "__wrappers__.initialize.ecdsa_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.initialize.ecdsa_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 35, - "offset": 0 - }, - "pc": 401, - "value": "[cast([fp + (-5)] + 3, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.initialize.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__wrappers__.initialize.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 35, - "offset": 0 - }, - "pc": 401, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 36, - "offset": 0 - }, - "pc": 407, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__wrappers__.initialize.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.initialize.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 35, - "offset": 0 - }, - "pc": 401, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 36, - "offset": 0 - }, - "pc": 407, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.initialize.ret_struct": { - "cairo_type": "__main__.initialize.Return", - "full_name": "__wrappers__.initialize.ret_struct", - "references": [ - { - "ap_tracking_data": { - "group": 36, - "offset": 0 - }, - "pc": 407, - "value": "[cast(ap + 0, __main__.initialize.Return*)]" - } - ], - "type": "reference" - }, - "__wrappers__.initialize.retdata": { - "cairo_type": "felt*", - "full_name": "__wrappers__.initialize.retdata", - "references": [ - { - "ap_tracking_data": { - "group": 36, - "offset": 1 - }, - "pc": 409, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.initialize.retdata_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.initialize.retdata_size", - "references": [ - { - "ap_tracking_data": { - "group": 36, - "offset": 1 - }, - "pc": 409, - "value": "cast(0, felt)" - } - ], - "type": "reference" - }, - "__wrappers__.initialize.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.initialize.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 35, - "offset": 0 - }, - "pc": 401, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 36, - "offset": 0 - }, - "pc": 407, - "value": "[cast(ap + (-3), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.initialize_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.mint": { - "decorators": ["external"], - "pc": 476, - "type": "function" - }, - "__wrappers__.mint.Args": { - "full_name": "__wrappers__.mint.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.mint.ImplicitArgs": { - "full_name": "__wrappers__.mint.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.mint.Return": { - "full_name": "__wrappers__.mint.Return", - "members": { - "ecdsa_ptr": { - "cairo_type": "felt", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "retdata": { - "cairo_type": "felt*", - "offset": 5 - }, - "size": { - "cairo_type": "felt", - "offset": 4 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "__wrappers__.mint.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.mint.__calldata_actual_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.mint.__calldata_actual_size", - "references": [ - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "cast([fp + (-3)] + 2 - [fp + (-3)], felt)" - } - ], - "type": "reference" - }, - "__wrappers__.mint.__calldata_arg_amount": { - "cairo_type": "felt", - "full_name": "__wrappers__.mint.__calldata_arg_amount", - "references": [ - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "[cast([fp + (-3)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.mint.__calldata_arg_recipient": { - "cairo_type": "felt", - "full_name": "__wrappers__.mint.__calldata_arg_recipient", - "references": [ - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "[cast([fp + (-3)], felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.mint.__calldata_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.mint.__calldata_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "cast([fp + (-3)] + 1, felt*)" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "cast([fp + (-3)] + 2, felt*)" - } - ], - "type": "reference" - }, - "__wrappers__.mint.__temp17": { - "cairo_type": "felt", - "full_name": "__wrappers__.mint.__temp17", - "references": [ - { - "ap_tracking_data": { - "group": 40, - "offset": 1 - }, - "pc": 478, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.mint.__wrapped_func": { - "destination": "__main__.mint", - "type": "alias" - }, - "__wrappers__.mint.ecdsa_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.mint.ecdsa_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "[cast([fp + (-5)] + 3, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.mint.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__wrappers__.mint.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 178 - }, - "pc": 486, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__wrappers__.mint.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.mint.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 178 - }, - "pc": 486, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.mint.ret_struct": { - "cairo_type": "__main__.mint.Return", - "full_name": "__wrappers__.mint.ret_struct", - "references": [ - { - "ap_tracking_data": { - "group": 40, - "offset": 178 - }, - "pc": 486, - "value": "[cast(ap + 0, __main__.mint.Return*)]" - } - ], - "type": "reference" - }, - "__wrappers__.mint.retdata": { - "cairo_type": "felt*", - "full_name": "__wrappers__.mint.retdata", - "references": [ - { - "ap_tracking_data": { - "group": 40, - "offset": 179 - }, - "pc": 488, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.mint.retdata_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.mint.retdata_size", - "references": [ - { - "ap_tracking_data": { - "group": 40, - "offset": 179 - }, - "pc": 488, - "value": "cast(0, felt)" - } - ], - "type": "reference" - }, - "__wrappers__.mint.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.mint.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 178 - }, - "pc": 486, - "value": "[cast(ap + (-3), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.mint_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.transfer": { - "decorators": ["external"], - "pc": 508, - "type": "function" - }, - "__wrappers__.transfer.Args": { - "full_name": "__wrappers__.transfer.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.transfer.ImplicitArgs": { - "full_name": "__wrappers__.transfer.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.transfer.Return": { - "full_name": "__wrappers__.transfer.Return", - "members": { - "ecdsa_ptr": { - "cairo_type": "felt", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "retdata": { - "cairo_type": "felt*", - "offset": 5 - }, - "size": { - "cairo_type": "felt", - "offset": 4 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "__wrappers__.transfer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.transfer.__calldata_actual_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.transfer.__calldata_actual_size", - "references": [ - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "cast([fp + (-3)] + 2 - [fp + (-3)], felt)" - } - ], - "type": "reference" - }, - "__wrappers__.transfer.__calldata_arg_amount": { - "cairo_type": "felt", - "full_name": "__wrappers__.transfer.__calldata_arg_amount", - "references": [ - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "[cast([fp + (-3)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer.__calldata_arg_recipient": { - "cairo_type": "felt", - "full_name": "__wrappers__.transfer.__calldata_arg_recipient", - "references": [ - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "[cast([fp + (-3)], felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer.__calldata_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.transfer.__calldata_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "cast([fp + (-3)] + 1, felt*)" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "cast([fp + (-3)] + 2, felt*)" - } - ], - "type": "reference" - }, - "__wrappers__.transfer.__temp18": { - "cairo_type": "felt", - "full_name": "__wrappers__.transfer.__temp18", - "references": [ - { - "ap_tracking_data": { - "group": 42, - "offset": 1 - }, - "pc": 510, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer.__wrapped_func": { - "destination": "__main__.transfer", - "type": "alias" - }, - "__wrappers__.transfer.ecdsa_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.transfer.ecdsa_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "[cast([fp + (-5)] + 3, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__wrappers__.transfer.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 280 - }, - "pc": 518, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.transfer.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 280 - }, - "pc": 518, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer.ret_struct": { - "cairo_type": "__main__.transfer.Return", - "full_name": "__wrappers__.transfer.ret_struct", - "references": [ - { - "ap_tracking_data": { - "group": 42, - "offset": 280 - }, - "pc": 518, - "value": "[cast(ap + 0, __main__.transfer.Return*)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer.retdata": { - "cairo_type": "felt*", - "full_name": "__wrappers__.transfer.retdata", - "references": [ - { - "ap_tracking_data": { - "group": 42, - "offset": 281 - }, - "pc": 520, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer.retdata_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.transfer.retdata_size", - "references": [ - { - "ap_tracking_data": { - "group": 42, - "offset": 281 - }, - "pc": 520, - "value": "cast(0, felt)" - } - ], - "type": "reference" - }, - "__wrappers__.transfer.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.transfer.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 280 - }, - "pc": 518, - "value": "[cast(ap + (-3), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.transfer_from": { - "decorators": ["external"], - "pc": 557, - "type": "function" - }, - "__wrappers__.transfer_from.Args": { - "full_name": "__wrappers__.transfer_from.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.transfer_from.ImplicitArgs": { - "full_name": "__wrappers__.transfer_from.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.transfer_from.Return": { - "full_name": "__wrappers__.transfer_from.Return", - "members": { - "ecdsa_ptr": { - "cairo_type": "felt", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "retdata": { - "cairo_type": "felt*", - "offset": 5 - }, - "size": { - "cairo_type": "felt", - "offset": 4 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "__wrappers__.transfer_from.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.transfer_from.__calldata_actual_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.transfer_from.__calldata_actual_size", - "references": [ - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "cast([fp + (-3)] + 3 - [fp + (-3)], felt)" - } - ], - "type": "reference" - }, - "__wrappers__.transfer_from.__calldata_arg_amount": { - "cairo_type": "felt", - "full_name": "__wrappers__.transfer_from.__calldata_arg_amount", - "references": [ - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast([fp + (-3)] + 2, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer_from.__calldata_arg_recipient": { - "cairo_type": "felt", - "full_name": "__wrappers__.transfer_from.__calldata_arg_recipient", - "references": [ - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast([fp + (-3)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer_from.__calldata_arg_sender": { - "cairo_type": "felt", - "full_name": "__wrappers__.transfer_from.__calldata_arg_sender", - "references": [ - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast([fp + (-3)], felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer_from.__calldata_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.transfer_from.__calldata_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "cast([fp + (-3)] + 1, felt*)" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "cast([fp + (-3)] + 2, felt*)" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "cast([fp + (-3)] + 3, felt*)" - } - ], - "type": "reference" - }, - "__wrappers__.transfer_from.__temp19": { - "cairo_type": "felt", - "full_name": "__wrappers__.transfer_from.__temp19", - "references": [ - { - "ap_tracking_data": { - "group": 44, - "offset": 1 - }, - "pc": 559, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer_from.__wrapped_func": { - "destination": "__main__.transfer_from", - "type": "alias" - }, - "__wrappers__.transfer_from.ecdsa_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.transfer_from.ecdsa_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast([fp + (-5)] + 3, felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer_from.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__wrappers__.transfer_from.pedersen_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 432 - }, - "pc": 568, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer_from.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.transfer_from.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 432 - }, - "pc": 568, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer_from.ret_struct": { - "cairo_type": "__main__.transfer_from.Return", - "full_name": "__wrappers__.transfer_from.ret_struct", - "references": [ - { - "ap_tracking_data": { - "group": 44, - "offset": 432 - }, - "pc": 568, - "value": "[cast(ap + 0, __main__.transfer_from.Return*)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer_from.retdata": { - "cairo_type": "felt*", - "full_name": "__wrappers__.transfer_from.retdata", - "references": [ - { - "ap_tracking_data": { - "group": 44, - "offset": 433 - }, - "pc": 570, - "value": "[cast(ap + (-1), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer_from.retdata_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.transfer_from.retdata_size", - "references": [ - { - "ap_tracking_data": { - "group": 44, - "offset": 433 - }, - "pc": 570, - "value": "cast(0, felt)" - } - ], - "type": "reference" - }, - "__wrappers__.transfer_from.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.transfer_from.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 432 - }, - "pc": 568, - "value": "[cast(ap + (-3), felt**)]" - } - ], - "type": "reference" - }, - "__wrappers__.transfer_from_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.BitwiseBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "x_and_y": { - "cairo_type": "felt", - "offset": 2 - }, - "x_or_y": { - "cairo_type": "felt", - "offset": 4 - }, - "x_xor_y": { - "cairo_type": "felt", - "offset": 3 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcOpBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", - "members": { - "m": { - "cairo_type": "felt", - "offset": 4 - }, - "p": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 0 - }, - "q": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 2 - }, - "r": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcPoint": { - "destination": "starkware.cairo.common.ec_point.EcPoint", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.HashBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "members": { - "result": { - "cairo_type": "felt", - "offset": 2 - }, - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.SignatureBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "members": { - "message": { - "cairo_type": "felt", - "offset": 1 - }, - "pub_key": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.dict_access.DictAccess": { - "full_name": "starkware.cairo.common.dict_access.DictAccess", - "members": { - "key": { - "cairo_type": "felt", - "offset": 0 - }, - "new_value": { - "cairo_type": "felt", - "offset": 2 - }, - "prev_value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.ec_point.EcPoint": { - "full_name": "starkware.cairo.common.ec_point.EcPoint", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.hash.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "starkware.cairo.common.hash.hash2": { - "decorators": [], - "pc": 0, - "type": "function" - }, - "starkware.cairo.common.hash.hash2.Args": { - "full_name": "starkware.cairo.common.hash.hash2.Args", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.hash.hash2.ImplicitArgs": { - "full_name": "starkware.cairo.common.hash.hash2.ImplicitArgs", - "members": { - "hash_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.hash.hash2.Return": { - "full_name": "starkware.cairo.common.hash.hash2.Return", - "members": { - "result": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.hash.hash2.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.hash.hash2.hash_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "starkware.cairo.common.hash.hash2.hash_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 0, - "offset": 0 - }, - "pc": 0, - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 0, - "offset": 0 - }, - "pc": 2, - "value": "cast([fp + (-5)] + 3, starkware.cairo.common.cairo_builtins.HashBuiltin*)" - } - ], - "type": "reference" - }, - "starkware.cairo.common.hash.hash2.result": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.hash.hash2.result", - "references": [ - { - "ap_tracking_data": { - "group": 0, - "offset": 0 - }, - "pc": 2, - "value": "[cast([fp + (-5)] + 2, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.hash.hash2.x": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.hash.hash2.x", - "references": [ - { - "ap_tracking_data": { - "group": 0, - "offset": 0 - }, - "pc": 0, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.hash.hash2.y": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.hash.hash2.y", - "references": [ - { - "ap_tracking_data": { - "group": 0, - "offset": 0 - }, - "pc": 0, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit": { - "decorators": ["known_ap_change"], - "pc": 24, - "type": "function" - }, - "starkware.cairo.common.math.assert_250_bit.Args": { - "full_name": "starkware.cairo.common.math.assert_250_bit.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_250_bit.HIGH_BOUND": { - "type": "const", - "value": 5316911983139663491615228241121378304 - }, - "starkware.cairo.common.math.assert_250_bit.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_250_bit.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_250_bit.Return": { - "full_name": "starkware.cairo.common.math.assert_250_bit.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.math.assert_250_bit.SHIFT": { - "type": "const", - "value": 340282366920938463463374607431768211456 - }, - "starkware.cairo.common.math.assert_250_bit.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_250_bit.UPPER_BOUND": { - "type": "const", - "value": 1809251394333065553493296640760748560207343510400633813116524750123642650624 - }, - "starkware.cairo.common.math.assert_250_bit.__temp0": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.__temp0", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 1 - }, - "pc": 26, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.__temp1": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.__temp1", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 2 - }, - "pc": 27, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.__temp2": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.__temp2", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 3 - }, - "pc": 28, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.__temp3": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.__temp3", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 4 - }, - "pc": 30, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.__temp4": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.__temp4", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 5 - }, - "pc": 32, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.__temp5": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.__temp5", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 6 - }, - "pc": 33, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.high": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.high", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 24, - "value": "[cast([fp + (-4)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.low": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.low", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 24, - "value": "[cast([fp + (-4)], felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.range_check_ptr": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 24, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 6 - }, - "pc": 34, - "value": "cast([fp + (-4)] + 3, felt)" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.value", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 24, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le": { - "decorators": [], - "pc": 10, - "type": "function" - }, - "starkware.cairo.common.math.assert_le.Args": { - "full_name": "starkware.cairo.common.math.assert_le.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_le.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le.Return": { - "full_name": "starkware.cairo.common.math.assert_le.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_le.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le.a", - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 10, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le.b": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le.b", - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 10, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le.range_check_ptr": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 10, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 2, - "offset": 5 - }, - "pc": 14, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_nn": { - "decorators": [], - "pc": 6, - "type": "function" - }, - "starkware.cairo.common.math.assert_nn.Args": { - "full_name": "starkware.cairo.common.math.assert_nn.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_nn.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_nn.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_nn.Return": { - "full_name": "starkware.cairo.common.math.assert_nn.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.math.assert_nn.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_nn.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_nn.a", - "references": [ - { - "ap_tracking_data": { - "group": 1, - "offset": 0 - }, - "pc": 6, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_nn.range_check_ptr": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_nn.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 1, - "offset": 0 - }, - "pc": 6, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 1, - "offset": 0 - }, - "pc": 7, - "value": "cast([fp + (-4)] + 1, felt)" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_nn_le": { - "decorators": [], - "pc": 15, - "type": "function" - }, - "starkware.cairo.common.math.assert_nn_le.Args": { - "full_name": "starkware.cairo.common.math.assert_nn_le.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.assert_nn_le.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_nn_le.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_nn_le.Return": { - "full_name": "starkware.cairo.common.math.assert_nn_le.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.math.assert_nn_le.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_nn_le.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_nn_le.a", - "references": [ - { - "ap_tracking_data": { - "group": 3, - "offset": 0 - }, - "pc": 15, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_nn_le.b": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_nn_le.b", - "references": [ - { - "ap_tracking_data": { - "group": 3, - "offset": 0 - }, - "pc": 15, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_nn_le.range_check_ptr": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_nn_le.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 3, - "offset": 0 - }, - "pc": 15, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 3, - "offset": 5 - }, - "pc": 19, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 3, - "offset": 14 - }, - "pc": 23, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.ADDR_BOUND": { - "type": "const", - "value": -106710729501573572985208420194530329073740042555888586719489 - }, - "starkware.starknet.common.storage.MAX_STORAGE_ITEM_SIZE": { - "type": "const", - "value": 256 - }, - "starkware.starknet.common.storage.assert_250_bit": { - "destination": "starkware.cairo.common.math.assert_250_bit", - "type": "alias" - }, - "starkware.starknet.common.storage.normalize_address": { - "decorators": ["known_ap_change"], - "pc": 37, - "type": "function" - }, - "starkware.starknet.common.storage.normalize_address.Args": { - "full_name": "starkware.starknet.common.storage.normalize_address.Args", - "members": { - "addr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.storage.normalize_address.ImplicitArgs": { - "full_name": "starkware.starknet.common.storage.normalize_address.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.storage.normalize_address.Return": { - "full_name": "starkware.starknet.common.storage.normalize_address.Return", - "members": { - "res": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.storage.normalize_address.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.storage.normalize_address.__temp6": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.__temp6", - "references": [ - { - "ap_tracking_data": { - "group": 5, - "offset": 13 - }, - "pc": 48, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.normalize_address.__temp7": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.__temp7", - "references": [ - { - "ap_tracking_data": { - "group": 5, - "offset": 13 - }, - "pc": 63, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.normalize_address._anon_label20": { - "pc": 55, - "type": "label" - }, - "starkware.starknet.common.storage.normalize_address._anon_label21": { - "pc": 77, - "type": "label" - }, - "starkware.starknet.common.storage.normalize_address._anon_label22": { - "pc": 69, - "type": "label" - }, - "starkware.starknet.common.storage.normalize_address._anon_label23": { - "pc": 75, - "type": "label" - }, - "starkware.starknet.common.storage.normalize_address.addr": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.addr", - "references": [ - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 37, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.normalize_address.is_250": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.is_250", - "references": [ - { - "ap_tracking_data": { - "group": 5, - "offset": 2 - }, - "pc": 57, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.normalize_address.is_small": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.is_small", - "references": [ - { - "ap_tracking_data": { - "group": 5, - "offset": 1 - }, - "pc": 39, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.normalize_address.range_check_ptr": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 37, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 12 - }, - "pc": 46, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 24 - }, - "pc": 52, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 24 - }, - "pc": 67, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 24 - }, - "pc": 75, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.normalize_address.x": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.x", - "references": [ - { - "ap_tracking_data": { - "group": 5, - "offset": 1 - }, - "pc": 41, - "value": "cast([fp + (-3)] + 106710729501573572985208420194530329073740042555888586719489, felt)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.normalize_address.y": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.y", - "references": [ - { - "ap_tracking_data": { - "group": 5, - "offset": 1 - }, - "pc": 41, - "value": "cast((-1) - [fp + (-3)], felt)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.CALL_CONTRACT_SELECTOR": { - "type": "const", - "value": 20853273475220472486191784820 - }, - "starkware.starknet.common.syscalls.CallContract": { - "full_name": "starkware.starknet.common.syscalls.CallContract", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractRequest": { - "full_name": "starkware.starknet.common.syscalls.CallContractRequest", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractResponse": { - "full_name": "starkware.starknet.common.syscalls.CallContractResponse", - "members": { - "retdata": { - "cairo_type": "felt*", - "offset": 1 - }, - "retdata_size": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DELEGATE_CALL_SELECTOR": { - "type": "const", - "value": 21167594061783206823196716140 - }, - "starkware.starknet.common.syscalls.DictAccess": { - "destination": "starkware.cairo.common.dict_access.DictAccess", - "type": "alias" - }, - "starkware.starknet.common.syscalls.GET_CALLER_ADDRESS_SELECTOR": { - "type": "const", - "value": 94901967781393078444254803017658102643 - }, - "starkware.starknet.common.syscalls.GET_CONTRACT_ADDRESS_SELECTOR": { - "type": "const", - "value": 6219495360805491471215297013070624192820083 - }, - "starkware.starknet.common.syscalls.GET_SEQUENCER_ADDRESS_SELECTOR": { - "type": "const", - "value": 1592190833581991703053805829594610833820054387 - }, - "starkware.starknet.common.syscalls.GET_TX_SIGNATURE_SELECTOR": { - "type": "const", - "value": 1448089128652340074717162277007973 - }, - "starkware.starknet.common.syscalls.GetCallerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "members": { - "caller_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddress": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "members": { - "sequencer_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignature": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignature", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureRequest": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureResponse": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "members": { - "signature": { - "cairo_type": "felt*", - "offset": 1 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.SEND_MESSAGE_TO_L1_SELECTOR": { - "type": "const", - "value": 433017908768303439907196859243777073 - }, - "starkware.starknet.common.syscalls.STORAGE_READ_SELECTOR": { - "type": "const", - "value": 100890693370601760042082660 - }, - "starkware.starknet.common.syscalls.STORAGE_WRITE_SELECTOR": { - "type": "const", - "value": 25828017502874050592466629733 - }, - "starkware.starknet.common.syscalls.SendMessageToL1SysCall": { - "full_name": "starkware.starknet.common.syscalls.SendMessageToL1SysCall", - "members": { - "payload_ptr": { - "cairo_type": "felt*", - "offset": 3 - }, - "payload_size": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "to_address": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageRead": { - "full_name": "starkware.starknet.common.syscalls.StorageRead", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadResponse", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadRequest": { - "full_name": "starkware.starknet.common.syscalls.StorageReadRequest", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadResponse": { - "full_name": "starkware.starknet.common.syscalls.StorageReadResponse", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageWrite": { - "full_name": "starkware.starknet.common.syscalls.StorageWrite", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address": { - "decorators": [], - "pc": 77, - "type": "function" - }, - "starkware.starknet.common.syscalls.get_caller_address.Args": { - "full_name": "starkware.starknet.common.syscalls.get_caller_address.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address.Return": { - "full_name": "starkware.starknet.common.syscalls.get_caller_address.Return", - "members": { - "caller_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.get_caller_address.__temp8": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.get_caller_address.__temp8", - "references": [ - { - "ap_tracking_data": { - "group": 6, - "offset": 1 - }, - "pc": 79, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.get_caller_address.syscall": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddress", - "full_name": "starkware.starknet.common.syscalls.get_caller_address.syscall", - "references": [ - { - "ap_tracking_data": { - "group": 6, - "offset": 0 - }, - "pc": 77, - "value": "[cast([fp + (-3)], starkware.starknet.common.syscalls.GetCallerAddress*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 6, - "offset": 0 - }, - "pc": 77, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 6, - "offset": 1 - }, - "pc": 80, - "value": "cast([fp + (-3)] + 2, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read": { - "decorators": [], - "pc": 84, - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_read.Args": { - "full_name": "starkware.starknet.common.syscalls.storage_read.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.storage_read.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.Return": { - "full_name": "starkware.starknet.common.syscalls.storage_read.Return", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.storage_read.__temp9": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.storage_read.__temp9", - "references": [ - { - "ap_tracking_data": { - "group": 7, - "offset": 1 - }, - "pc": 86, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read.address": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.storage_read.address", - "references": [ - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 84, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read.response": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadResponse", - "full_name": "starkware.starknet.common.syscalls.storage_read.response", - "references": [ - { - "ap_tracking_data": { - "group": 7, - "offset": 1 - }, - "pc": 88, - "value": "[cast([fp + (-4)] + 2, starkware.starknet.common.syscalls.StorageReadResponse*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read.syscall": { - "cairo_type": "starkware.starknet.common.syscalls.StorageRead", - "full_name": "starkware.starknet.common.syscalls.storage_read.syscall", - "references": [ - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 84, - "value": "[cast([fp + (-4)], starkware.starknet.common.syscalls.StorageRead*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_read.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 84, - "value": "[cast(fp + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 1 - }, - "pc": 88, - "value": "cast([fp + (-4)] + 3, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_write": { - "decorators": [], - "pc": 92, - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_write.Args": { - "full_name": "starkware.starknet.common.syscalls.storage_write.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.storage_write.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.Return": { - "full_name": "starkware.starknet.common.syscalls.storage_write.Return", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.storage_write.__temp10": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.storage_write.__temp10", - "references": [ - { - "ap_tracking_data": { - "group": 8, - "offset": 1 - }, - "pc": 94, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_write.address": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.storage_write.address", - "references": [ - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 92, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_write.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 92, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 1 - }, - "pc": 97, - "value": "cast([fp + (-5)] + 3, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_write.value": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.storage_write.value", - "references": [ - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 92, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - } - }, - "main_scope": "__main__", - "prime": "0x800000000000011000000000000000000000000000000000000000000000001", - "reference_manager": { - "references": [ - { - "ap_tracking_data": { - "group": 0, - "offset": 0 - }, - "pc": 0, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 0, - "offset": 0 - }, - "pc": 0, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 0, - "offset": 0 - }, - "pc": 0, - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 0, - "offset": 0 - }, - "pc": 2, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 0, - "offset": 0 - }, - "pc": 2, - "value": "cast([fp + (-5)] + 3, starkware.cairo.common.cairo_builtins.HashBuiltin*)" - }, - { - "ap_tracking_data": { - "group": 1, - "offset": 0 - }, - "pc": 6, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 1, - "offset": 0 - }, - "pc": 6, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 1, - "offset": 0 - }, - "pc": 7, - "value": "cast([fp + (-4)] + 1, felt)" - }, - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 10, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 10, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 10, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 2, - "offset": 5 - }, - "pc": 14, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 3, - "offset": 0 - }, - "pc": 15, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 3, - "offset": 0 - }, - "pc": 15, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 3, - "offset": 0 - }, - "pc": 15, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 3, - "offset": 5 - }, - "pc": 19, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 3, - "offset": 14 - }, - "pc": 23, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 24, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 24, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 24, - "value": "[cast([fp + (-4)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 24, - "value": "[cast([fp + (-4)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 1 - }, - "pc": 26, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 2 - }, - "pc": 27, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 3 - }, - "pc": 28, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 4 - }, - "pc": 30, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 5 - }, - "pc": 32, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 6 - }, - "pc": 33, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 6 - }, - "pc": 34, - "value": "cast([fp + (-4)] + 3, felt)" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 37, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 37, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 1 - }, - "pc": 39, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 1 - }, - "pc": 41, - "value": "cast([fp + (-3)] + 106710729501573572985208420194530329073740042555888586719489, felt)" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 1 - }, - "pc": 41, - "value": "cast((-1) - [fp + (-3)], felt)" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 12 - }, - "pc": 46, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 13 - }, - "pc": 48, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 24 - }, - "pc": 52, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 2 - }, - "pc": 57, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 13 - }, - "pc": 63, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 24 - }, - "pc": 67, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 24 - }, - "pc": 75, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 24 - }, - "pc": 75, - "value": "[cast(ap - 0 + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 6, - "offset": 0 - }, - "pc": 77, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 6, - "offset": 0 - }, - "pc": 77, - "value": "[cast([fp + (-3)], starkware.starknet.common.syscalls.GetCallerAddress*)]" - }, - { - "ap_tracking_data": { - "group": 6, - "offset": 1 - }, - "pc": 79, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 6, - "offset": 1 - }, - "pc": 80, - "value": "cast([fp + (-3)] + 2, felt*)" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 84, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 84, - "value": "[cast(fp + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 84, - "value": "[cast([fp + (-4)], starkware.starknet.common.syscalls.StorageRead*)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 1 - }, - "pc": 86, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 1 - }, - "pc": 88, - "value": "[cast([fp + (-4)] + 2, starkware.starknet.common.syscalls.StorageReadResponse*)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 1 - }, - "pc": 88, - "value": "cast([fp + (-4)] + 3, felt*)" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 92, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 92, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 92, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 1 - }, - "pc": 94, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 1 - }, - "pc": 97, - "value": "cast([fp + (-5)] + 3, felt*)" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 100, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 100, - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 100, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 100, - "value": "cast(1065622543624526936256554561967983185612257046533136611876836524258158810564, felt)" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 7 - }, - "pc": 106, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 7 - }, - "pc": 106, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 36 - }, - "pc": 110, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 36 - }, - "pc": 110, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 114, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 114, - "value": "[cast(fp + (-6), felt**)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 114, - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 114, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 44 - }, - "pc": 119, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 44 - }, - "pc": 119, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 44 - }, - "pc": 119, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 51 - }, - "pc": 123, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 51 - }, - "pc": 123, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 52 - }, - "pc": 124, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 53 - }, - "pc": 125, - "value": "[cast(ap + (-1), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 54 - }, - "pc": 126, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 55 - }, - "pc": 127, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 128, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 128, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 128, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 128, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 128, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 44 - }, - "pc": 133, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 44 - }, - "pc": 133, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 44 - }, - "pc": 133, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 51 - }, - "pc": 138, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 141, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 141, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 141, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 141, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 141, - "value": "cast(337994139936370667767799129369552596157394447336989834104582481799883947719, felt)" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 7 - }, - "pc": 147, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 7 - }, - "pc": 147, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 12 - }, - "pc": 150, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 12 - }, - "pc": 150, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 41 - }, - "pc": 154, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 41 - }, - "pc": 154, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 158, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 158, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 158, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 158, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 158, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 50 - }, - "pc": 164, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 50 - }, - "pc": 164, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 50 - }, - "pc": 164, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 57 - }, - "pc": 168, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 57 - }, - "pc": 168, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 58 - }, - "pc": 169, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 59 - }, - "pc": 170, - "value": "[cast(ap + (-1), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 60 - }, - "pc": 171, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 61 - }, - "pc": 172, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 173, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 173, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 173, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 173, - "value": "[cast(fp + (-8), felt**)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 173, - "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 173, - "value": "[cast(fp + (-6), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 50 - }, - "pc": 179, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 50 - }, - "pc": 179, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 50 - }, - "pc": 179, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 57 - }, - "pc": 184, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 15, - "offset": 0 - }, - "pc": 187, - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 15, - "offset": 0 - }, - "pc": 187, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 15, - "offset": 0 - }, - "pc": 187, - "value": "cast(603278275252936218847294002513349627170936020082667936993356353388973422646, felt)" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 192, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 192, - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 192, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 7 - }, - "pc": 196, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 7 - }, - "pc": 196, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 7 - }, - "pc": 196, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 14 - }, - "pc": 200, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 14 - }, - "pc": 200, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 15 - }, - "pc": 201, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 16 - }, - "pc": 202, - "value": "[cast(ap + (-1), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 17 - }, - "pc": 203, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 18 - }, - "pc": 204, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 0 - }, - "pc": 205, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 0 - }, - "pc": 205, - "value": "[cast(fp + (-6), felt**)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 0 - }, - "pc": 205, - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 0 - }, - "pc": 205, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 7 - }, - "pc": 209, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 7 - }, - "pc": 209, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 7 - }, - "pc": 209, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 14 - }, - "pc": 214, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 19, - "offset": 0 - }, - "pc": 220, - "value": "[cast(fp + (-4), __main__.decimals.Return*)]" - }, - { - "ap_tracking_data": { - "group": 19, - "offset": 0 - }, - "pc": 220, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 19, - "offset": 1 - }, - "pc": 222, - "value": "[cast(fp, felt**)]" - }, - { - "ap_tracking_data": { - "group": 19, - "offset": 1 - }, - "pc": 222, - "value": "[cast(fp, felt**)]" - }, - { - "ap_tracking_data": { - "group": 19, - "offset": 1 - }, - "pc": 223, - "value": "cast([fp] + 1, felt*)" - }, - { - "ap_tracking_data": { - "group": 19, - "offset": 2 - }, - "pc": 225, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 20, - "offset": 0 - }, - "pc": 229, - "value": "[cast([fp + (-5)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 20, - "offset": 0 - }, - "pc": 229, - "value": "[cast([fp + (-5)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 20, - "offset": 0 - }, - "pc": 229, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 20, - "offset": 0 - }, - "pc": 229, - "value": "[cast([fp + (-5)] + 3, felt*)]" - }, - { - "ap_tracking_data": { - "group": 20, - "offset": 0 - }, - "pc": 229, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 20, - "offset": 0 - }, - "pc": 229, - "value": "cast([fp + (-3)] - [fp + (-3)], felt)" - }, - { - "ap_tracking_data": { - "group": 20, - "offset": 3 - }, - "pc": 232, - "value": "[cast(ap + (-1), __main__.decimals.Return*)]" - }, - { - "ap_tracking_data": { - "group": 20, - "offset": 11 - }, - "pc": 235, - "value": "[cast(ap + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 20, - "offset": 11 - }, - "pc": 235, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 20, - "offset": 11 - }, - "pc": 235, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 21, - "offset": 0 - }, - "pc": 242, - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 21, - "offset": 0 - }, - "pc": 242, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 21, - "offset": 0 - }, - "pc": 242, - "value": "cast(1697461057326310581967816530165551571743938660869987744467005324703617544296, felt)" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 0 - }, - "pc": 247, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 0 - }, - "pc": 247, - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 0 - }, - "pc": 247, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 7 - }, - "pc": 251, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 7 - }, - "pc": 251, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 7 - }, - "pc": 251, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 14 - }, - "pc": 255, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 14 - }, - "pc": 255, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 15 - }, - "pc": 256, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 16 - }, - "pc": 257, - "value": "[cast(ap + (-1), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 17 - }, - "pc": 258, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 22, - "offset": 18 - }, - "pc": 259, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 23, - "offset": 0 - }, - "pc": 260, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 23, - "offset": 0 - }, - "pc": 260, - "value": "[cast(fp + (-6), felt**)]" - }, - { - "ap_tracking_data": { - "group": 23, - "offset": 0 - }, - "pc": 260, - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 23, - "offset": 0 - }, - "pc": 260, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 23, - "offset": 7 - }, - "pc": 264, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 23, - "offset": 7 - }, - "pc": 264, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 23, - "offset": 7 - }, - "pc": 264, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 23, - "offset": 14 - }, - "pc": 269, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 24, - "offset": 0 - }, - "pc": 272, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 24, - "offset": 0 - }, - "pc": 272, - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 24, - "offset": 0 - }, - "pc": 272, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 24, - "offset": 23 - }, - "pc": 277, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 24, - "offset": 23 - }, - "pc": 277, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 24, - "offset": 23 - }, - "pc": 277, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 24, - "offset": 23 - }, - "pc": 277, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 25, - "offset": 0 - }, - "pc": 278, - "value": "[cast(fp + (-4), __main__.get_total_supply.Return*)]" - }, - { - "ap_tracking_data": { - "group": 25, - "offset": 0 - }, - "pc": 278, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 25, - "offset": 1 - }, - "pc": 280, - "value": "[cast(fp, felt**)]" - }, - { - "ap_tracking_data": { - "group": 25, - "offset": 1 - }, - "pc": 280, - "value": "[cast(fp, felt**)]" - }, - { - "ap_tracking_data": { - "group": 25, - "offset": 1 - }, - "pc": 281, - "value": "cast([fp] + 1, felt*)" - }, - { - "ap_tracking_data": { - "group": 25, - "offset": 2 - }, - "pc": 283, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 0 - }, - "pc": 287, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 0 - }, - "pc": 287, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 0 - }, - "pc": 287, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 0 - }, - "pc": 287, - "value": "[cast([fp + (-5)] + 3, felt*)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 0 - }, - "pc": 287, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 0 - }, - "pc": 287, - "value": "cast([fp + (-3)] - [fp + (-3)], felt)" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 28 - }, - "pc": 293, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 28 - }, - "pc": 293, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 28 - }, - "pc": 293, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 28 - }, - "pc": 293, - "value": "[cast(ap + (-1), __main__.get_total_supply.Return*)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 36 - }, - "pc": 296, - "value": "[cast(ap + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 36 - }, - "pc": 296, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 26, - "offset": 36 - }, - "pc": 296, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 27, - "offset": 0 - }, - "pc": 303, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 27, - "offset": 0 - }, - "pc": 303, - "value": "[cast(fp + (-6), felt**)]" - }, - { - "ap_tracking_data": { - "group": 27, - "offset": 0 - }, - "pc": 303, - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 27, - "offset": 0 - }, - "pc": 303, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 27, - "offset": 61 - }, - "pc": 309, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 27, - "offset": 61 - }, - "pc": 309, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 27, - "offset": 61 - }, - "pc": 309, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 27, - "offset": 61 - }, - "pc": 309, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 28, - "offset": 0 - }, - "pc": 310, - "value": "[cast(fp + (-4), __main__.balance_of.Return*)]" - }, - { - "ap_tracking_data": { - "group": 28, - "offset": 0 - }, - "pc": 310, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 28, - "offset": 1 - }, - "pc": 312, - "value": "[cast(fp, felt**)]" - }, - { - "ap_tracking_data": { - "group": 28, - "offset": 1 - }, - "pc": 312, - "value": "[cast(fp, felt**)]" - }, - { - "ap_tracking_data": { - "group": 28, - "offset": 1 - }, - "pc": 313, - "value": "cast([fp] + 1, felt*)" - }, - { - "ap_tracking_data": { - "group": 28, - "offset": 2 - }, - "pc": 315, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "[cast([fp + (-5)] + 3, felt*)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "[cast([fp + (-3)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "cast([fp + (-3)] + 1, felt*)" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 0 - }, - "pc": 319, - "value": "cast([fp + (-3)] + 1 - [fp + (-3)], felt)" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 1 - }, - "pc": 321, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 68 - }, - "pc": 328, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 68 - }, - "pc": 328, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 68 - }, - "pc": 328, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 68 - }, - "pc": 328, - "value": "[cast(ap + (-1), __main__.balance_of.Return*)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 76 - }, - "pc": 331, - "value": "[cast(ap + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 76 - }, - "pc": 331, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 29, - "offset": 76 - }, - "pc": 331, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 30, - "offset": 0 - }, - "pc": 338, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 30, - "offset": 0 - }, - "pc": 338, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 30, - "offset": 0 - }, - "pc": 338, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 30, - "offset": 0 - }, - "pc": 338, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 30, - "offset": 0 - }, - "pc": 338, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 30, - "offset": 68 - }, - "pc": 345, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 30, - "offset": 68 - }, - "pc": 345, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 30, - "offset": 68 - }, - "pc": 345, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 30, - "offset": 68 - }, - "pc": 345, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 31, - "offset": 0 - }, - "pc": 346, - "value": "[cast(fp + (-4), __main__.allowance.Return*)]" - }, - { - "ap_tracking_data": { - "group": 31, - "offset": 0 - }, - "pc": 346, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 31, - "offset": 1 - }, - "pc": 348, - "value": "[cast(fp, felt**)]" - }, - { - "ap_tracking_data": { - "group": 31, - "offset": 1 - }, - "pc": 348, - "value": "[cast(fp, felt**)]" - }, - { - "ap_tracking_data": { - "group": 31, - "offset": 1 - }, - "pc": 349, - "value": "cast([fp] + 1, felt*)" - }, - { - "ap_tracking_data": { - "group": 31, - "offset": 2 - }, - "pc": 351, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "[cast([fp + (-5)] + 3, felt*)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "[cast([fp + (-3)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "cast([fp + (-3)] + 1, felt*)" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "[cast([fp + (-3)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "cast([fp + (-3)] + 2, felt*)" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 355, - "value": "cast([fp + (-3)] + 2 - [fp + (-3)], felt)" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 1 - }, - "pc": 357, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 76 - }, - "pc": 365, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 76 - }, - "pc": 365, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 76 - }, - "pc": 365, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 76 - }, - "pc": 365, - "value": "[cast(ap + (-1), __main__.allowance.Return*)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 84 - }, - "pc": 368, - "value": "[cast(ap + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 84 - }, - "pc": 368, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 84 - }, - "pc": 368, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 0 - }, - "pc": 375, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 0 - }, - "pc": 375, - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 0 - }, - "pc": 375, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 23 - }, - "pc": 380, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 23 - }, - "pc": 380, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 23 - }, - "pc": 380, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 23 - }, - "pc": 380, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 45 - }, - "pc": 389, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 45 - }, - "pc": 389, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 45 - }, - "pc": 389, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 51 - }, - "pc": 392, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 33, - "offset": 51 - }, - "pc": 392, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 34, - "offset": 0 - }, - "pc": 400, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 34, - "offset": 0 - }, - "pc": 400, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 34, - "offset": 0 - }, - "pc": 400, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 35, - "offset": 0 - }, - "pc": 401, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 35, - "offset": 0 - }, - "pc": 401, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 35, - "offset": 0 - }, - "pc": 401, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 35, - "offset": 0 - }, - "pc": 401, - "value": "[cast([fp + (-5)] + 3, felt*)]" - }, - { - "ap_tracking_data": { - "group": 35, - "offset": 0 - }, - "pc": 401, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 35, - "offset": 0 - }, - "pc": 401, - "value": "cast([fp + (-3)] - [fp + (-3)], felt)" - }, - { - "ap_tracking_data": { - "group": 36, - "offset": 0 - }, - "pc": 407, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 36, - "offset": 0 - }, - "pc": 407, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 36, - "offset": 0 - }, - "pc": 407, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 36, - "offset": 0 - }, - "pc": 407, - "value": "[cast(ap + 0, __main__.initialize.Return*)]" - }, - { - "ap_tracking_data": { - "group": 36, - "offset": 1 - }, - "pc": 409, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 36, - "offset": 1 - }, - "pc": 409, - "value": "cast(0, felt)" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 0 - }, - "pc": 417, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 0 - }, - "pc": 417, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 0 - }, - "pc": 417, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 0 - }, - "pc": 417, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 0 - }, - "pc": 417, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 61 - }, - "pc": 423, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 61 - }, - "pc": 423, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 61 - }, - "pc": 423, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 61 - }, - "pc": 423, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 121 - }, - "pc": 430, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 121 - }, - "pc": 430, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 121 - }, - "pc": 430, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 141 - }, - "pc": 432, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 141 - }, - "pc": 432, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 141 - }, - "pc": 432, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 141 - }, - "pc": 432, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 163 - }, - "pc": 438, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 163 - }, - "pc": 438, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 163 - }, - "pc": 438, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 0 - }, - "pc": 439, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 0 - }, - "pc": 439, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 0 - }, - "pc": 439, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 0 - }, - "pc": 439, - "value": "[cast(fp + (-8), felt**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 0 - }, - "pc": 439, - "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 0 - }, - "pc": 439, - "value": "[cast(fp + (-6), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 61 - }, - "pc": 445, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 61 - }, - "pc": 445, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 61 - }, - "pc": 445, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 61 - }, - "pc": 445, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 80 - }, - "pc": 450, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 140 - }, - "pc": 457, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 140 - }, - "pc": 457, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 140 - }, - "pc": 457, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 198 - }, - "pc": 460, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 198 - }, - "pc": 460, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 198 - }, - "pc": 460, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 198 - }, - "pc": 460, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 258 - }, - "pc": 467, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 258 - }, - "pc": 467, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 258 - }, - "pc": 467, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 39, - "offset": 0 - }, - "pc": 468, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 39, - "offset": 0 - }, - "pc": 468, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 39, - "offset": 0 - }, - "pc": 468, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 39, - "offset": 0 - }, - "pc": 468, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 39, - "offset": 0 - }, - "pc": 468, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 39, - "offset": 170 - }, - "pc": 475, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 39, - "offset": 170 - }, - "pc": 475, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 39, - "offset": 170 - }, - "pc": 475, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "[cast([fp + (-5)] + 3, felt*)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "[cast([fp + (-3)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "cast([fp + (-3)] + 1, felt*)" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "[cast([fp + (-3)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "cast([fp + (-3)] + 2, felt*)" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 0 - }, - "pc": 476, - "value": "cast([fp + (-3)] + 2 - [fp + (-3)], felt)" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 1 - }, - "pc": 478, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 178 - }, - "pc": 486, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 178 - }, - "pc": 486, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 178 - }, - "pc": 486, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 178 - }, - "pc": 486, - "value": "[cast(ap + 0, __main__.mint.Return*)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 179 - }, - "pc": 488, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 40, - "offset": 179 - }, - "pc": 488, - "value": "cast(0, felt)" - }, - { - "ap_tracking_data": { - "group": 41, - "offset": 0 - }, - "pc": 496, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 41, - "offset": 0 - }, - "pc": 496, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 41, - "offset": 0 - }, - "pc": 496, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 41, - "offset": 0 - }, - "pc": 496, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 41, - "offset": 0 - }, - "pc": 496, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 41, - "offset": 6 - }, - "pc": 499, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 41, - "offset": 6 - }, - "pc": 499, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 41, - "offset": 272 - }, - "pc": 507, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 41, - "offset": 272 - }, - "pc": 507, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 41, - "offset": 272 - }, - "pc": 507, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "[cast([fp + (-5)] + 3, felt*)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "[cast([fp + (-3)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "cast([fp + (-3)] + 1, felt*)" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "[cast([fp + (-3)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "cast([fp + (-3)] + 2, felt*)" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 0 - }, - "pc": 508, - "value": "cast([fp + (-3)] + 2 - [fp + (-3)], felt)" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 1 - }, - "pc": 510, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 280 - }, - "pc": 518, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 280 - }, - "pc": 518, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 280 - }, - "pc": 518, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 280 - }, - "pc": 518, - "value": "[cast(ap + 0, __main__.transfer.Return*)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 281 - }, - "pc": 520, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 42, - "offset": 281 - }, - "pc": 520, - "value": "cast(0, felt)" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 0 - }, - "pc": 528, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 0 - }, - "pc": 528, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 0 - }, - "pc": 528, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 0 - }, - "pc": 528, - "value": "[cast(fp + (-8), felt**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 0 - }, - "pc": 528, - "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 0 - }, - "pc": 528, - "value": "[cast(fp + (-6), felt*)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 6 - }, - "pc": 531, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 6 - }, - "pc": 531, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 74 - }, - "pc": 538, - "value": "[cast(ap + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 74 - }, - "pc": 538, - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 74 - }, - "pc": 538, - "value": "[cast(ap + (-2), felt*)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 74 - }, - "pc": 538, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 93 - }, - "pc": 543, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 359 - }, - "pc": 551, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 359 - }, - "pc": 551, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 359 - }, - "pc": 551, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 423 - }, - "pc": 556, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 423 - }, - "pc": 556, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 43, - "offset": 423 - }, - "pc": 556, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast([fp + (-5)] + 3, felt*)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast([fp + (-3)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "cast([fp + (-3)] + 1, felt*)" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast([fp + (-3)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "cast([fp + (-3)] + 2, felt*)" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "[cast([fp + (-3)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "cast([fp + (-3)] + 3, felt*)" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 0 - }, - "pc": 557, - "value": "cast([fp + (-3)] + 3 - [fp + (-3)], felt)" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 1 - }, - "pc": 559, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 432 - }, - "pc": 568, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 432 - }, - "pc": 568, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 432 - }, - "pc": 568, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 432 - }, - "pc": 568, - "value": "[cast(ap + 0, __main__.transfer_from.Return*)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 433 - }, - "pc": 570, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 44, - "offset": 433 - }, - "pc": 570, - "value": "cast(0, felt)" - }, - { - "ap_tracking_data": { - "group": 45, - "offset": 0 - }, - "pc": 578, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 45, - "offset": 0 - }, - "pc": 578, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 45, - "offset": 0 - }, - "pc": 578, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 45, - "offset": 0 - }, - "pc": 578, - "value": "[cast(fp + (-6), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 45, - "offset": 0 - }, - "pc": 578, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 45, - "offset": 6 - }, - "pc": 581, - "value": "[cast(ap + (-2), felt**)]" - }, - { - "ap_tracking_data": { - "group": 45, - "offset": 6 - }, - "pc": 581, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 45, - "offset": 73 - }, - "pc": 589, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 45, - "offset": 73 - }, - "pc": 589, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 45, - "offset": 73 - }, - "pc": 589, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "[cast([fp + (-5)], felt**)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "[cast([fp + (-5)] + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "[cast([fp + (-5)] + 3, felt*)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "[cast([fp + (-3)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "cast([fp + (-3)] + 1, felt*)" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "[cast([fp + (-3)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "cast([fp + (-3)] + 2, felt*)" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 0 - }, - "pc": 590, - "value": "cast([fp + (-3)] + 2 - [fp + (-3)], felt)" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 1 - }, - "pc": 592, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 81 - }, - "pc": 600, - "value": "[cast(ap + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 81 - }, - "pc": 600, - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 81 - }, - "pc": 600, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 81 - }, - "pc": 600, - "value": "[cast(ap + 0, __main__.approve.Return*)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 82 - }, - "pc": 602, - "value": "[cast(ap + (-1), felt**)]" - }, - { - "ap_tracking_data": { - "group": 46, - "offset": 82 - }, - "pc": 602, - "value": "cast(0, felt)" - } - ] - } - } -} diff --git a/assets/test.csv b/assets/test.csv deleted file mode 100644 index 5ec60ccc..00000000 --- a/assets/test.csv +++ /dev/null @@ -1,2 +0,0 @@ -0x04bcb72b74c4f6ed1c406051f6d12e107d1a9ed578656123f46c227a35800b4c,0.0000049 -0x048daae66604c3443419a27dde758ade1f702386ed720d2084c4d08cecefad51,0.0000049 \ No newline at end of file diff --git a/assets/winners-starkpunks.csv b/assets/winners-starkpunks.csv deleted file mode 100644 index c59ded83..00000000 --- a/assets/winners-starkpunks.csv +++ /dev/null @@ -1,10 +0,0 @@ -0x04bcb72b74c4f6ed1c406051f6d12e107d1a9ed578656123f46c227a35800b4c,0.049 -0x048daae66604c3443419a27dde758ade1f702386ed720d2084c4d08cecefad51,0.049 -0x043ec97b2307d69ae5818e9cfc746e408a354b26bbf67bdcd1bdfd78504d41a6,0.049 -0x04f1a5324037ec83694f2ef3c64dce3a645b4dd3a16c9e7110d2af911e3c26c5,0.049 -0x03c3d383c4e78e6554a0a363b043617cff6d063c56bfbf590c8973d9e47950d1,0.049 -0x06c5eca298d24a604194a5e88e31bf24c3b96247944da52d8e0e158e833578d6,0.049 -0x01dc978fa72bd8203c15a09ce4afc64e6a5b9b3b36d536a67a36d412b0f3de87,0.049 -0x075056821111e82d10abc409449958b05043a04a706a4e84f5d9f9b37e46e9a7,0.049 -0x00999458e4037369a84a48f0a33359cb4f1d9aef7f136632440512d173201a4d,0.049 -0x0752d8740eb587d498c6249acf238fe9b31bfd8d9f6671240660c54aaf60693b,0.049 \ No newline at end of file diff --git a/assets/winners.csv b/assets/winners.csv deleted file mode 100644 index 72148300..00000000 --- a/assets/winners.csv +++ /dev/null @@ -1,30 +0,0 @@ -0x04bcb72b74c4f6ed1c406051f6d12e107d1a9ed578656123f46c227a35800b4c,0.049 -0x048daae66604c3443419a27dde758ade1f702386ed720d2084c4d08cecefad51,0.049 -0x043ec97b2307d69ae5818e9cfc746e408a354b26bbf67bdcd1bdfd78504d41a6,0.049 -0x04f1a5324037ec83694f2ef3c64dce3a645b4dd3a16c9e7110d2af911e3c26c5,0.049 -0x03c3d383c4e78e6554a0a363b043617cff6d063c56bfbf590c8973d9e47950d1,0.049 -0x06c5eca298d24a604194a5e88e31bf24c3b96247944da52d8e0e158e833578d6,0.049 -0x01dc978fa72bd8203c15a09ce4afc64e6a5b9b3b36d536a67a36d412b0f3de87,0.049 -0x075056821111e82d10abc409449958b05043a04a706a4e84f5d9f9b37e46e9a7,0.049 -0x00999458e4037369a84a48f0a33359cb4f1d9aef7f136632440512d173201a4d,0.049 -0x0752d8740eb587d498c6249acf238fe9b31bfd8d9f6671240660c54aaf60693b,0.049 -0x05caae0e7c8b9cbed02e31c7886e5966fbd3e6ea58e560e00732e31df4eb0fe8,0.024 -0x0749296ca55fea77f8fd89d827f71e8f569cfebd38d7d9539e25ca5d8d929394,0.024 -0x0719a7886c4a27cd167419b68eeb81ec2ce0d0688270c3c143040b344bcd482b,0.024 -0x00decddcefa730dd657333f3c9103bfd22db6137de2f1ba2883ad78286240773,0.024 -0x01dceb9b9eddcb98e2d1090023e12e22baf48887c8696e6494ffed6bc25bec22,0.024 -0x0630905d2a6865d1b94cc930137232df629ebcceb31b77d044ef66aa6858606e,0.024 -0x070370be7692a10b303a70caad9edd11b50d99586cff720fc4845e7f83f13c3d,0.024 -0x0400ffbb161a82396b55d7bf954402640ecd62673bb1f05e69a7b186e9342f90,0.024 -0x058a838fc9ae21570751317e4b798767f1ede84f8f7ca2d45bcef3d0440bb0a6,0.024 -0x06994e832150f6c61e7e5791f48cd8c50cc45d7132f04a2054a27bd510bbe4c7,0.024 -0x07890d57be36ec3dd91ca71e1ef91331ed3b1419d2ba3a90a77a9864749acd60,0.012 -0x0707a98dcb368a48de073d403aa5c6ac3b60dd8c3e45ee9ab693518818c626ca,0.012 -0x07a13630f054bd72b85a21ce9b6929338c59d5945ea014f82c4d2f82f01280d5,0.012 -0x05dae5624e16aeef3a877b1b710b5a11f15cb374d8be1e21e7850e549b5744c6,0.012 -0x01f796880310808c01c5e55c4c4444f5f5ef4572db9c82af68e64ec70c90f27a,0.012 -0x069f51059768c77fe6ccfd954bfe531825f27d5ee7b5649d67df743be5ecef3c,0.012 -0x0218bf487f95c38408450914f9e2ec4290fc804de241fe870b9bd04dd4cae411,0.012 -0x05489ca2b6292d2c7d0bf2410eb102946cd94711ca67dcecd95ccba404036760,0.012 -0x0623a815376bdd496f9c548ebf7d354487ac50aeb33e2f178fececb77e503f79,0.012 -0x07a45881d06e74ec8c9a58e31dc1fee61d30959679bf946ac02d0115fcac7661,0.012 \ No newline at end of file diff --git a/contracts/README.md b/contracts/README.md new file mode 100644 index 00000000..b971525b --- /dev/null +++ b/contracts/README.md @@ -0,0 +1,4 @@ +# Contracts + +All cairo contracts that serve for testing / examples purpose are in this `contracts/` folder. +We prefix the folder with the cairo version used to avoid any unexpected error (ex: v2.6.3 means it uses cairo v2.6.3) diff --git a/contracts/v2.2.0/Scarb.lock b/contracts/v2.2.0/Scarb.lock new file mode 100644 index 00000000..e69de29b diff --git a/contracts/v2.6.2/Scarb.lock b/contracts/v2.6.2/Scarb.lock new file mode 100644 index 00000000..e5656c4c --- /dev/null +++ b/contracts/v2.6.2/Scarb.lock @@ -0,0 +1,6 @@ +# Code generated by scarb DO NOT EDIT. +version = 1 + +[[package]] +name = "starknet_dart" +version = "0.1.0" diff --git a/contracts/v2.6.2/Scarb.toml b/contracts/v2.6.2/Scarb.toml new file mode 100644 index 00000000..e919dfb1 --- /dev/null +++ b/contracts/v2.6.2/Scarb.toml @@ -0,0 +1,13 @@ +[package] +name = "starknet_dart" +version = "0.1.0" +edition = "2023_11" + +# See more keys and their definitions at https://docs.swmansion.com/scarb/docs/reference/manifest.html + +[dependencies] +starknet = ">=2.5.4" + + +[[target.starknet-contract]] + diff --git a/contracts/v2.6.2/src/hello.cairo b/contracts/v2.6.2/src/hello.cairo new file mode 100644 index 00000000..de686185 --- /dev/null +++ b/contracts/v2.6.2/src/hello.cairo @@ -0,0 +1,29 @@ +#[starknet::interface] +trait IHello { + fn get_name(self: @T) -> felt252; + fn set_name(ref self: T, name: felt252); +} + +#[starknet::contract] +mod hello { + #[storage] + struct Storage { + name: felt252, + } + + #[constructor] + fn constructor(ref self: ContractState, name: felt252) { + self.name.write(name); + } + + #[abi(embed_v0)] + impl HelloImpl of super::IHello { + fn get_name(self: @ContractState) -> felt252 { + self.name.read() + } + + fn set_name(ref self: ContractState, name: felt252) { + self.name.write(name); + } + } +} \ No newline at end of file diff --git a/contracts/v2.6.2/src/lib.cairo b/contracts/v2.6.2/src/lib.cairo new file mode 100644 index 00000000..493e3b69 --- /dev/null +++ b/contracts/v2.6.2/src/lib.cairo @@ -0,0 +1,27 @@ +mod hello; + +fn main() -> u32 { + fib(16) +} + +fn fib(mut n: u32) -> u32 { + let mut a: u32 = 0; + let mut b: u32 = 1; + while n != 0 { + n = n - 1; + let temp = b; + b = a + b; + a = temp; + }; + a +} + +#[cfg(test)] +mod tests { + use super::fib; + + #[test] + fn it_works() { + assert(fib(16) == 987, 'it works!'); + } +} diff --git a/contracts/v2.6.2/target/CACHEDIR.TAG b/contracts/v2.6.2/target/CACHEDIR.TAG new file mode 100644 index 00000000..e95ca71c --- /dev/null +++ b/contracts/v2.6.2/target/CACHEDIR.TAG @@ -0,0 +1,3 @@ +Signature: 8a477f597d28d172789f06886806bc55 +# This file is a cache directory tag created by scarb. +# For information about cache directory tags see https://bford.info/cachedir/ diff --git a/contracts/v2.6.2/target/dev/starknet_dart.starknet_artifacts.json b/contracts/v2.6.2/target/dev/starknet_dart.starknet_artifacts.json new file mode 100644 index 00000000..f651c5bf --- /dev/null +++ b/contracts/v2.6.2/target/dev/starknet_dart.starknet_artifacts.json @@ -0,0 +1 @@ +{"version":1,"contracts":[{"id":"l3thimsakq46s","package_name":"starknet_dart","contract_name":"hello","module_path":"starknet_dart::hello::hello","artifacts":{"sierra":"starknet_dart_hello.contract_class.json","casm":null}}]} \ No newline at end of file diff --git a/contracts/v2.6.2/target/dev/starknet_dart_hello.contract_class.json b/contracts/v2.6.2/target/dev/starknet_dart_hello.contract_class.json new file mode 100644 index 00000000..b9230c10 --- /dev/null +++ b/contracts/v2.6.2/target/dev/starknet_dart_hello.contract_class.json @@ -0,0 +1 @@ +{"sierra_program":["0x1","0x5","0x0","0x2","0x6","0x2","0x92","0x6e","0x16","0x52616e6765436865636b","0x800000000000000100000000000000000000000000000000","0x436f6e7374","0x800000000000000000000000000000000000000000000002","0x1","0x3","0x2","0x4661696c656420746f20646573657269616c697a6520706172616d202331","0x537472756374","0x800000000000000f00000000000000000000000000000001","0x0","0x2ee1e2b1b89f8c495f200e4956278a4d47395fe262f27b52e5865c9524c08c3","0x66656c74323532","0x800000000000000700000000000000000000000000000000","0x456e756d","0x800000000000000700000000000000000000000000000003","0x11c6d8087e00642489f92d2821ad6ebd6532ad1a3b6d12833da6d6810391511","0x4f7574206f6620676173","0x4172726179","0x800000000000000300000000000000000000000000000001","0x536e617073686f74","0x800000000000000700000000000000000000000000000001","0x6","0x800000000000000700000000000000000000000000000002","0x1baeba72e79e9db2587cf44fedb2f3700b2075a5e8e39a562584862c4b71f62","0x7","0x8","0xb","0x753332","0x53746f7261676541646472657373","0x53746f726167654261736541646472657373","0x4275696c74696e436f737473","0x53797374656d","0x16a4c8d7c05909052238a862d8cc3e7975bf05a07b3a69c6b28951083a6d672","0x800000000000000300000000000000000000000000000003","0x10","0x9931c641b913035ae674b400b61a51476d506bbe8bba2ff8a6272790aba9e6","0x9","0x11","0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473","0x426f78","0x4761734275696c74696e","0x31","0x7265766f6b655f61705f747261636b696e67","0x77697468647261775f676173","0x6272616e63685f616c69676e","0x7374727563745f6465636f6e737472756374","0x73746f72655f74656d70","0x61727261795f736e617073686f745f706f705f66726f6e74","0x64726f70","0x14","0x61727261795f6e6577","0x636f6e73745f61735f696d6d656469617465","0x13","0x61727261795f617070656e64","0x7374727563745f636f6e737472756374","0x656e756d5f696e6974","0x12","0x15","0xf","0x6765745f6275696c74696e5f636f737473","0xe","0x77697468647261775f6761735f616c6c","0x73746f726167655f626173655f616464726573735f636f6e7374","0x361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60","0x73746f726167655f616464726573735f66726f6d5f62617365","0xa","0xc","0x73746f726167655f726561645f73797363616c6c","0x736e617073686f745f74616b65","0x5","0x656e61626c655f61705f747261636b696e67","0x756e626f78","0x72656e616d65","0x4","0x6a756d70","0x656e756d5f6d61746368","0x64697361626c655f61705f747261636b696e67","0x73746f726167655f77726974655f73797363616c6c","0x140","0xffffffffffffffff","0x46","0xd","0x39","0x17","0x18","0x19","0x1a","0x1b","0x1c","0x30","0x1d","0x1e","0x1f","0x20","0x21","0x22","0x23","0x24","0x25","0x26","0x27","0x28","0x29","0x2a","0x2b","0x2c","0x2d","0x2e","0x2f","0x32","0x33","0x34","0x35","0xbc","0x62","0x67","0xac","0x7b","0x9e","0x95","0x36","0x37","0x38","0x3a","0x3b","0x3c","0x3d","0x3e","0x3f","0x40","0x41","0x42","0x43","0x44","0x45","0x132","0xd8","0xdd","0x122","0xf1","0x114","0x10b","0x54","0xca","0xafe","0x141312070605040307050605110b100f0e0d0c0b0a09080706050403020100","0x200e1f0e1e0e1d0b071c0504031b050c0b18091a05190b1809170516150605","0x162928070605040327052605250b230f170524050c0b2309220b0a0902210e","0x330505321a050532060505310b0505301b05052f0b2e0b2d0b2c2b022a0605","0x3005073a050739270505382405053806050537060505303605053506050534","0x530430505350b42410705400b3f3e0505300b3d3a0505303c0505303b0505","0x350b073a050739260505381b05053817050532170505460b45440505301c05","0x4b0505301a0505300b074b0507390605054a060505490b481b050532470505","0x50535070505320b4f060505320b4e4b05054d05074b050739070505380b4c","0x5060b0b51050b070b1a170752474b075107050b07050b0b51050b0b0b5005","0xb51050b070b1c053b43260751071b05470b4b0551054b054b0b1b05510506","0x5430b530551050b260b440551050b1b0b0b510543051a0b0b51052605170b","0xb240551053e3c07530b3c0551050b440b3e0551055344071c0b5305510553","0x70551050705240b4705510547053c0b4b0551054b054b0b2705510524053e","0x50b3a0b0b51051c05170b0b51050b070b2707474b4b05270551052705270b","0x51050b070b003b075433360751073a474b06330b3a0551053a05360b3a0551","0x570551055705560b570551050b550b560551055505000b550551050b3b0b0b","0x65b5a5958065107565707334b580b3605510536054b0b560551055605570b","0x51055a5f071c0b5a0551055a05430b5f0551050b1b0b0b51050b070b5e5d5c","0x563055d0b6305510562055c0b0b510561055a0b62610751056005590b6005","0x5905240b5805510558053c0b3605510536054b0b6505510564055e0b640551","0x660551050b440b0b51050b070b655958364b05650551056505270b59055105","0x51055c053c0b3605510536054b0b6805510567053e0b670551055e6607530b","0xb0b51050b070b685d5c364b05680551056805270b5d0551055d05240b5c05","0xb6b0551056a69071c0b6a0551056a05430b6a0551050b5f0b690551050b1b","0x3b0551053b054b0b6e0551056d053e0b6d0551056b6c07530b6c0551050b44","0xb6e07003b4b056e0551056e05270b070551050705240b0005510500053c0b","0x52b05430b2b0551050b5f0b5b0551050b1b0b0b51050605600b0b51050b07","0x53e0b710551056f7007530b700551050b440b6f0551052b5b071c0b2b0551","0x270b070551050705240b1a0551051a053c0b1705510517054b0b7205510571","0x170773474b075107050b07050b0b51050b0b0b72071a174b05720551057205","0x470b4b0551054b054b0b0b51050b610b1b0551050605060b0b51050b070b1a","0x551054405630b440551054305620b0b51050b070b1c057443260751071b05","0xb75050b670b240551053e05660b3c0551052605650b3e0551055305640b53","0x660b3c0551051c05650b3a0551052705690b270551050b680b0b51050b070b","0x3b0751073c05470b0b51050b070b3305763605510724056a0b240551053a05","0xb0b510500051a0b0b51053b05170b0b51050b6b0b0b51050b070b55057700","0x71c0b570551055705430b570551050b260b560551050b1b0b0b510536056c","0xb5c0551055a053e0b5a055105585907530b590551050b440b580551055756","0x5c0551055c05270b070551050705240b4705510547053c0b4b0551054b054b","0x551050b3a0b0b51055505170b0b51050b6b0b0b51050b070b5c07474b4b05","0xb0b51050b070b616007785f5e0751075d474b06330b5d0551055d05360b5d","0x570b640551056405560b640551050b550b630551056205000b620551050b3b","0x686706796665075107366364075f476d0b5e0551055e054b0b630551056305","0xb0b51056b055a0b6c6b0751056a05590b6a0551050b1b0b0b51050b070b69","0x5e0551055e054b0b5b0551056e055e0b6e0551056d055d0b6d0551056c055c","0xb5b66655e4b055b0551055b05270b660551056605240b6505510565053c0b","0x4b0b700551056f053e0b6f055105692b07530b2b0551050b440b0b51050b07","0x5700551057005270b680551056805240b6705510567053c0b5e0551055e05","0x551050b5f0b710551050b1b0b0b510536056c0b0b51050b070b7068675e4b","0x57a7b07530b7b0551050b440b7a0551057271071c0b720551057205430b72","0x705240b6105510561053c0b6005510560054b0b540551057c053e0b7c0551","0xb0b51050b6b0b0b51050b070b540761604b05540551055405270b07055105","0x7e05430b7e0551050b5b0b7d0551050b1b0b0b51053c05170b0b510533056e","0x3e0b810551057f8007530b800551050b440b7f0551057e7d071c0b7e055105","0xb070551050705240b4705510547053c0b4b0551054b054b0b820551058105","0x51050b1b0b0b51050605600b0b51050b070b8207474b4b0582055105820527","0x51050b440b850551058483071c0b840551058405430b840551050b5f0b8305","0x1a053c0b1705510517054b0b8805510587053e0b87055105858607530b8605","0x51050b0b0b88071a174b05880551058805270b070551050705240b1a055105","0x610b1b0551050605060b0b51050b070b1a170789474b075107050b07050b0b","0xb0b51050b070b1c058a43260751071b05470b4b0551054b054b0b0b51050b","0x3c0551052605650b3e0551055305640b530551054405630b44055105430562","0x2705690b270551050b680b0b51050b070b0b8b050b670b240551053e05660b","0x33058c3605510724056a0b240551053a05660b3c0551051c05650b3a055105","0xb0b51050b6b0b0b51050b070b55058d003b0751073c05470b0b51050b070b","0x50b260b560551050b1b0b0b510536056c0b0b510500051a0b0b51053b0517","0x5907530b590551050b440b580551055756071c0b570551055705430b570551","0x240b4705510547053c0b4b0551054b054b0b5c0551055a053e0b5a05510558","0x51050b6b0b0b51050b070b5c07474b4b055c0551055c05270b070551050705","0x51075d474b06330b5d0551055d05360b5d0551050b3a0b0b51055505170b0b","0xb550b630551056205000b620551050b3b0b0b51050b070b6160078e5f5e07","0x476d0b5e0551055e054b0b630551056305570b640551056405560b64055105","0x5590b6a0551050b1b0b0b51050b070b696867068f6665075107366364075f","0x5e0b6e0551056d055d0b6d0551056c055c0b0b51056b055a0b6c6b0751056a","0xb660551056605240b6505510565053c0b5e0551055e054b0b5b0551056e05","0x692b07530b2b0551050b440b0b51050b070b5b66655e4b055b0551055b0527","0x5240b6705510567053c0b5e0551055e054b0b700551056f053e0b6f055105","0x510536056c0b0b51050b070b7068675e4b05700551057005270b6805510568","0x551057271071c0b720551057205430b720551050b5f0b710551050b1b0b0b","0x510560054b0b540551057c053e0b7c0551057a7b07530b7b0551050b440b7a","0x761604b05540551055405270b070551050705240b6105510561053c0b6005","0x50b1b0b0b51053c05170b0b510533056e0b0b51050b6b0b0b51050b070b54","0x50b440b7f0551057e7d071c0b7e0551057e05430b7e0551050b5b0b7d0551","0x53c0b4b0551054b054b0b8205510581053e0b810551057f8007530b800551","0x50b070b8207474b4b05820551058205270b070551050705240b4705510547","0x840551058405430b840551050b5f0b830551050b1b0b0b51050605600b0b51","0x510587053e0b87055105858607530b860551050b440b850551058483071c0b","0x58805270b070551050705240b1a0551051a053c0b1705510517054b0b8805","0x4b1b3c3b0b4b0b0607050b3a3c3b0b4b1b3c3b0b4b0688071a174b05880551","0x910607050b3a3c3b0b4b1b3c3b0b4b900607050b3a3c3b0b"],"sierra_program_debug_info":{"type_names":[[0,"RangeCheck"],[1,"Const"],[2,"Unit"],[3,"felt252"],[4,"core::option::Option::"],[5,"Const"],[6,"Array"],[7,"Snapshot>"],[8,"core::array::Span::"],[9,"Tuple>"],[10,"Const"],[11,"u32"],[12,"StorageAddress"],[13,"StorageBaseAddress"],[14,"BuiltinCosts"],[15,"System"],[16,"core::panics::Panic"],[17,"Tuple>"],[18,"core::panics::PanicResult::<(core::array::Span::,)>"],[19,"Const"],[20,"Box"],[21,"GasBuiltin"]],"libfunc_names":[[0,"revoke_ap_tracking"],[1,"withdraw_gas"],[2,"branch_align"],[3,"struct_deconstruct>"],[4,"store_temp"],[5,"array_snapshot_pop_front"],[6,"drop>>"],[7,"drop>"],[8,"array_new"],[9,"const_as_immediate>"],[10,"store_temp"],[11,"array_append"],[12,"struct_construct"],[13,"struct_construct>>"],[14,"enum_init,)>, 1>"],[15,"store_temp"],[16,"store_temp"],[17,"store_temp,)>>"],[18,"get_builtin_costs"],[19,"store_temp"],[20,"withdraw_gas_all"],[21,"storage_base_address_const<1528802474226268325865027367859591458315299653151958663884057507666229546336>"],[22,"storage_address_from_base"],[23,"const_as_immediate>"],[24,"store_temp"],[25,"store_temp"],[26,"storage_read_syscall"],[27,"snapshot_take>"],[28,"drop>"],[29,"struct_construct>"],[30,"struct_construct>>"],[31,"enum_init,)>, 0>"],[32,"const_as_immediate>"],[33,"drop>"],[34,"enable_ap_tracking"],[35,"unbox"],[36,"rename"],[37,"enum_init, 0>"],[38,"store_temp>>"],[39,"store_temp>"],[40,"jump"],[41,"struct_construct"],[42,"enum_init, 1>"],[43,"enum_match>"],[44,"disable_ap_tracking"],[45,"drop"],[46,"storage_write_syscall"],[47,"drop"],[48,"const_as_immediate>"]],"user_func_names":[[0,"starknet_dart::hello::hello::__wrapper__HelloImpl__get_name"],[1,"starknet_dart::hello::hello::__wrapper__HelloImpl__set_name"],[2,"starknet_dart::hello::hello::__wrapper__constructor"]]},"contract_class_version":"0.1.0","entry_points_by_type":{"EXTERNAL":[{"selector":"0xf61980aeb34c9c7f823d576c10d00648fdab6c03a59b539ed0824be31da466","function_idx":1},{"selector":"0x31341177714d81ad9ccd0c903211bc056a60e8af988d0fd918cc43874549653","function_idx":0}],"L1_HANDLER":[],"CONSTRUCTOR":[{"selector":"0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194","function_idx":2}]},"abi":[{"type":"impl","name":"HelloImpl","interface_name":"starknet_dart::hello::IHello"},{"type":"interface","name":"starknet_dart::hello::IHello","items":[{"type":"function","name":"get_name","inputs":[],"outputs":[{"type":"core::felt252"}],"state_mutability":"view"},{"type":"function","name":"set_name","inputs":[{"name":"name","type":"core::felt252"}],"outputs":[],"state_mutability":"external"}]},{"type":"constructor","name":"constructor","inputs":[{"name":"name","type":"core::felt252"}]},{"type":"event","name":"starknet_dart::hello::hello::Event","kind":"enum","variants":[]}]} \ No newline at end of file diff --git a/docs.yaml b/docs.yaml index 6f5ebb81..855a89b4 100644 --- a/docs.yaml +++ b/docs.yaml @@ -24,3 +24,5 @@ sidebar: - "/packages/secure-store" - - Wallet Kit - "/packages/wallet-kit" + - - How to Contribute + - "/how-to-contribute" diff --git a/docs/how-to-contribute.mdx b/docs/how-to-contribute.mdx new file mode 100644 index 00000000..f68d726c --- /dev/null +++ b/docs/how-to-contribute.mdx @@ -0,0 +1,112 @@ +# How to contribute (and get paid) + +**starknet.dart** is a dart package allowing any dart program (mainly Flutter apps) to communicate with the [Starknet](https://starknet.io/docs/) blockchain. + +The [Starknet nodes](https://github.com/eqlabs/pathfinder/blob/06ea631557937d4319aa539a2021e312ec757ac2/crates/pathfinder/src/rpc.rs) expose a JSON-RPC API (see the [specs](https://github.com/starkware-libs/starknet-specs)) that we can call to call Smart Contract methods or even get information on blocks and past transactions. + +The goal of the project is thus to build a bridge between dart applications and Starknet, while staying consistent with the common abstractions used in other blockchain SDKs (see [ethers.js](https://docs.ethers.io/v5/)). + +## Why contribute to starknet.dart? + +Starknet is a revolution in the web3 world: it allows to [scale Ethereum](https://docs.ethhub.io/ethereum-roadmap/layer-2-scaling/zk-rollups/) and offers the best UX one can dream of on a blockchain thanks to unique features like [account abstraction](https://www.argent.xyz/blog/wtf-is-account-abstraction/) or [session keys](https://github.com/dontpanicdao/starknet-burner). + +But web3 mainstream adoption won't happen unless decentralized applications go to mobile. That's why it's a priority to build the best possible Starknet SDK for Flutter, one of the most used cross-platform mobile frameworks. + +If you want to contribute to the web3 adoption and more specifically Starknet one, then you probably **can't have more impact than working on this SDK** that will be used by the majority of Flutter dApps on Starknet! + +### To become a core contributor + +After a few qualitative contributions, we'll probably offer you to join the core team to become a maintainer of the project and get paid for your work. + +If you want to contribute to the project, you can follow the steps below: + +1. Join our [telegram group](https://t.me/+CWezjfLIRYc0MDY0) and introduce yourself. +2. We'll let you know what are good issues to start with. +3. Create your account on [Only Dust](https://app.onlydust.com/p/starknetdart) and receive your first payment. + +## How to set up your dev env + +1. Clone the repository: + +```sh +git clone git@github.com:focustree/starknet.dart.git +``` + +2. [Install flutter and dart](https://docs.flutter.dev/get-started/install) + +3. Install [melos](https://melos.invertase.dev/~melos-latest/getting-started): + +```sh +dart pub global activate melos +``` + +We use melos to manage our monorepo: + +- Run `melos bs` to fetch deps +- Run `melos format` to format all packages +- Run `melos test` to run tests +- Run `melos publish` to publish all packages + +4. Fetch all dependencies: + +```sh +melos bootstrap +``` + +<<<<<<< HEAD +5. Set up your starknet dev env. First [install asdf](https://asdf-vm.com/guide/getting-started.html), then run: +||||||| parent of 3929d90 (Use starknet-devnet-rs instead of katana) +5. Setup your starknet dev env. First [install asdf](https://asdf-vm.com/guide/getting-started.html), then run: +======= +5. We setup all important params via env vars (ex: `STARKNET_RPC` ). Make sure to source the env vars before running any command: +>>>>>>> 3929d90 (Use starknet-devnet-rs instead of katana) + +```sh +source .env.devnet +``` + +6. Setup your starknet dev env + +First install [asdf](https://asdf-vm.com/guide/getting-started.html) and [cargo](https://doc.rust-lang.org/cargo/getting-started/installation.html). + +```sh +melos starknet:setup +``` + +Start the devnet in one terminal: + +```sh +melos devnet:start +``` + +And in another terminal, deploy the contracts: + +```sh +melos devnet:setup +``` + +7. Run the tests: + +```sh +melos test +``` + +## Repo structure + +- `/contracts` contains all the contracts we use in the project. We prefix the folder by the cairo version we use. +- `/packages` contains all the packages we use in the project. + - `starknet` contains the core logic with crypto hash functions and the main utility classes. + - `starknet_provider` contains the main package that we use to interact with the Starknet rpc nodes. + - `secure_store` manages the secure storage of the private key using different methods depending on the platform. + - `wallet_kit` is a higher level ui kit to manage wallets and transactions in a flutter app. +- `/examples` contains examples of apps using the packages. They should be accompanied by a tutorial in the docs to reproduce the app from scratch. +- `/docs` contains the documentation of the project. Docs are automatically deployed when we merge to main. + +## Troubleshooting + +Tools need to be at the right version to avoid any incompability: + +- [Cairo Compiler Version](https://github.com/starkware-libs/cairo/releases): `2.6.2` +- [Scarb](https://github.com/software-mansion/scarb/releases): `2.6.2` +- [Starknet Devnet](https://github.com/0xSpaceShard/starknet-devnet-rs/releases): `0.5.0` +- [Starkli](https://github.com/xJonathanLEI/starkli/releases): `0.2.9` diff --git a/examples/starknet_cli/melos_starknet_cli.iml b/examples/starknet_cli/melos_starknet_cli.iml new file mode 100644 index 00000000..389d07a1 --- /dev/null +++ b/examples/starknet_cli/melos_starknet_cli.iml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/wallet_app/lib/screens/home_screen.dart b/examples/wallet_app/lib/screens/home_screen.dart index c1908e6a..6a549cd9 100644 --- a/examples/wallet_app/lib/screens/home_screen.dart +++ b/examples/wallet_app/lib/screens/home_screen.dart @@ -1,7 +1,6 @@ import 'package:flutter/material.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; import 'package:wallet_kit/wallet_kit.dart'; -import 'package:wallet_kit/widgets/account_address.dart'; class HomeScreen extends HookConsumerWidget { const HomeScreen({super.key}); diff --git a/melos.yaml b/melos.yaml new file mode 100644 index 00000000..51f05764 --- /dev/null +++ b/melos.yaml @@ -0,0 +1,116 @@ +name: monorepo + +packages: + - examples/** + - packages/** + +ignore: + - "examples/starknet_counter" + - "packages/wallet_kit" + +command: + bootstrap: + usePubspecOverrides: true + +scripts: + lint: + description: Lint all packages + steps: + - melos format:check + - melos analyze + analyze: + description: Analyze all packages + exec: dart analyze --fatal-infos + format: + description: Format all packages + exec: dart format . + format:check: + description: Format check all packages + exec: dart format --set-exit-if-changed . + + starknet:setup: + description: Install starknet dev env + run: | + source .env.devnet + + cargo install starknet-devnet --version $STARKNET_DEVNET_VERSION + + curl https://get.starkli.sh | sh + starkliup -v v$STARKLI_VERSION + + asdf plugin add scarb + asdf install scarb $SCARB_VERSION + asdf local scarb $SCARB_VERSION + + melos versions + + versions: + description: Display toolchain versions + run: | + echo "starkli: $(starkli --version)" + scarb --version + starknet-devnet --version + + devnet:start: + description: Start local devnet + run: | + starknet-devnet --seed 0 + devnet:setup: + description: Setup local devnet + run: | + melos contracts:build + melos contracts:declare + melos contracts:deploy + + contracts:build: + description: Build cairo contracts + run: | + cd contracts/v$CAIRO_VERSION + scarb build + contracts:declare: + description: Declare cairo contracts + run: | + starkli declare contracts/v$CAIRO_VERSION/target/dev/starknet_dart_hello.contract_class.json --compiler-version $CAIRO_VERSION + contracts:deploy: + description: Deploy cairo contracts + run: | + starkli deploy $HELLO_CLASS_HASH --salt $SALT 0x0 + hello:get_name: + description: Call hello get_name + run: | + starkli call $HELLO_CONTRACT_ADDRESS get_name + + test: + description: Run all tests + steps: + - melos test:dart:unit + - melos test:dart:integration + test:dart:unit: + description: Run all dart unit tests + run: melos exec --dir-exists="test" -- dart test --tags unit --fail-fast + packageFilters: + ignore: "*starknet_builder*" + flutter: false + test:dart:integration: + description: Run all dart integration tests + run: melos exec --dir-exists="test" -- dart test --tags integration --fail-fast + packageFilters: + ignore: "*starknet_builder*" + flutter: false + + publish:dry-run: + description: Publish dry-run all packages + exec: dart pub publish --dry-run + packageFilters: + noPrivate: true + + upgrade:dart: + name: Upgrade Dart package deps + exec: dart pub upgrade + packageFilters: + flutter: false + upgrade:flutter: + name: Upgrade Flutter package deps + exec: flutter pub upgrade + packageFilters: + flutter: true diff --git a/melos_monorepo.iml b/melos_monorepo.iml new file mode 100644 index 00000000..96815595 --- /dev/null +++ b/melos_monorepo.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/packages/analysis_options.yaml b/packages/analysis_options.yaml new file mode 100644 index 00000000..c80073d7 --- /dev/null +++ b/packages/analysis_options.yaml @@ -0,0 +1,3 @@ +analyzer: + errors: + non_nullable_equals_parameter: ignore diff --git a/packages/secure_store/example/pubspec_overrides.yaml b/packages/secure_store/example/pubspec_overrides.yaml new file mode 100644 index 00000000..5d5f0482 --- /dev/null +++ b/packages/secure_store/example/pubspec_overrides.yaml @@ -0,0 +1,4 @@ +# melos_managed_dependency_overrides: secure_store +dependency_overrides: + secure_store: + path: ../ diff --git a/packages/starknet/README.md b/packages/starknet/README.md index db06c74c..d4c8b7cf 100644 --- a/packages/starknet/README.md +++ b/packages/starknet/README.md @@ -41,7 +41,7 @@ dart test To run the tests on **devnet** use the following command: ``` -NETWORK=devnet dart test -t integration-devnet-040 +NETWORK=devnet dart test -t integration ``` ### Release a new version to pub.dev @@ -79,5 +79,4 @@ For more advanced features, check out the [dartdoc package](https://pub.dev/pack Refer to the [main README](../../README.md) for compiling cairo contracts. - You can also see compiled contracts in [this folder](../../contracts/build). diff --git a/packages/starknet/analysis_options.yaml b/packages/starknet/analysis_options.yaml index a8d4734a..d5305df3 100644 --- a/packages/starknet/analysis_options.yaml +++ b/packages/starknet/analysis_options.yaml @@ -4,3 +4,4 @@ analyzer: errors: invalid_annotation_target: ignore non_constant_identifier_names: ignore + non_nullable_equals_parameter: ignore diff --git a/packages/starknet/dart_test.yaml b/packages/starknet/dart_test.yaml index 0c96e9cb..28a1f175 100644 --- a/packages/starknet/dart_test.yaml +++ b/packages/starknet/dart_test.yaml @@ -1,6 +1,4 @@ tags: unit: - integration-devnet-040: + integration: integration-testnet: - rpc-node-bug: - to-be-fixed: diff --git a/packages/starknet/melos_starknet.iml b/packages/starknet/melos_starknet.iml new file mode 100644 index 00000000..389d07a1 --- /dev/null +++ b/packages/starknet/melos_starknet.iml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/packages/starknet/test/account_test.dart b/packages/starknet/test/account_test.dart index c1509176..0758bc44 100644 --- a/packages/starknet/test/account_test.dart +++ b/packages/starknet/test/account_test.dart @@ -53,7 +53,7 @@ void main() { ); expect(txStatus, equals(true)); }); - }, tags: ['integration-devnet-040']); + }, tags: ['integration'], skip: true); group('declare cairo 1', () { test( @@ -103,7 +103,7 @@ void main() { }, error: (error) => fail("Shouldn't fail")); }); - }, tags: ['integration-devnet-040']); + }, tags: ['integration'], skip: true); group('deploy', () { test('succeeds to deploy a cairo 0 contract', () async { @@ -182,8 +182,8 @@ void main() { error: ((error) => Felt.fromInt(0))); expect(accountClassHash, equals(classHash)); }); - // }, tags: ['integration-devnet-040']); - }, tags: ['to-be-fixed']); + // }, tags: ['integration']); + }, tags: ['integration'], skip: true); group('fee token', () { test('get balance', () async { @@ -222,7 +222,7 @@ void main() { final newBalance = await account1.balance(); expect(newBalance, equals(previousBalance)); }); - }, tags: ['integration-devnet-040']); + }, tags: ['integration'], skip: true); group('recovery from seed phrase', () { final mnemonic = diff --git a/packages/starknet/test/contract/contract_test.dart b/packages/starknet/test/contract/contract_test.dart index 5adaa02a..2bb28405 100644 --- a/packages/starknet/test/contract/contract_test.dart +++ b/packages/starknet/test/contract/contract_test.dart @@ -4,143 +4,139 @@ import 'package:starknet/starknet.dart'; import 'package:test/test.dart'; void main() { - group( - 'Contract', - () { - group('Compiled contract (cairo 0)', () { - test('Compute class hash for contract without attributes', () async { - final contractPath = - '${Directory.current.path}/../../contracts/build/balance.json'; - final compiledContract = - await DeprecatedCompiledContract.fromPath(contractPath); - final classHash = compiledContract.classHash(); - expect( - classHash, - equals(balanceClassHash.toBigInt()), - ); - }); - test('Compute class hash for contract with attributes', () async { - final contractPath = - '${Directory.current.path}/../../contracts/build/oz_account.json'; - final compiledContract = - await DeprecatedCompiledContract.fromPath(contractPath); - final classHash = compiledContract.classHash(); - expect( - classHash, - equals(ozAccountClassHash.toBigInt()), - ); - }); + group('Contract', () { + group('Compiled contract (cairo 0)', () { + test('Compute class hash for contract without attributes', () async { + final contractPath = + '${Directory.current.path}/../../contracts/build/balance.json'; + final compiledContract = + await DeprecatedCompiledContract.fromPath(contractPath); + final classHash = compiledContract.classHash(); + expect( + classHash, + equals(balanceClassHash.toBigInt()), + ); }); + test('Compute class hash for contract with attributes', () async { + final contractPath = + '${Directory.current.path}/../../contracts/build/oz_account.json'; + final compiledContract = + await DeprecatedCompiledContract.fromPath(contractPath); + final classHash = compiledContract.classHash(); + expect( + classHash, + equals(ozAccountClassHash.toBigInt()), + ); + }); + }, skip: true); - group('Compiled contract (cairo 1)', () { - test('Compute sierra class hash for ERC20 contract', () async { - final contractPath = - '${Directory.current.path}/../../contracts/cairo1/artifacts/erc20_sierra.txt'; - final expectedHashesPath = - '${Directory.current.path}/../../contracts/cairo1/artifacts/erc20.hashes.json'; - final content = await File(expectedHashesPath).readAsString(); - final expectedHashes = await json.decode(content); - final contract = await CompiledContract.fromPath(contractPath); - final classHash = contract.classHash(); - expect( - classHash, - equals( - BigInt.parse(expectedHashes["sierra_class_hash"]), - )); - }); - - test('Compute sierra class hash for ABI types contract', () async { - final contractPath = - '${Directory.current.path}/../../contracts/cairo1/artifacts/abi_types_sierra.txt'; - final expectedHashesPath = - '${Directory.current.path}/../../contracts/cairo1/artifacts/abi_types.hashes.json'; - final content = await File(expectedHashesPath).readAsString(); - final expectedHashes = await json.decode(content); - final contract = await CompiledContract.fromPath(contractPath); - final classHash = contract.classHash(); - expect( - classHash, - equals( - BigInt.parse(expectedHashes["sierra_class_hash"]), - )); - }); - - test('Compute compiled class hash for ERC20 contract', () async { - final contractPath = - '${Directory.current.path}/../../contracts/cairo1/artifacts/erc20_compiled.txt'; - final expectedHashesPath = - '${Directory.current.path}/../../contracts/cairo1/artifacts/erc20.hashes.json'; - final content = await File(expectedHashesPath).readAsString(); - final expectedHashes = await json.decode(content); - final contract = await CASMCompiledContract.fromPath(contractPath); - final classHash = contract.classHash(); - expect( - classHash, - equals( - BigInt.parse(expectedHashes["compiled_class_hash"]), - )); - }); + group('Compiled contract (cairo 1)', () { + test('Compute sierra class hash for ERC20 contract', () async { + final contractPath = + '${Directory.current.path}/../../contracts/cairo1/artifacts/erc20_sierra.txt'; + final expectedHashesPath = + '${Directory.current.path}/../../contracts/cairo1/artifacts/erc20.hashes.json'; + final content = await File(expectedHashesPath).readAsString(); + final expectedHashes = await json.decode(content); + final contract = await CompiledContract.fromPath(contractPath); + final classHash = contract.classHash(); + expect( + classHash, + equals( + BigInt.parse(expectedHashes["sierra_class_hash"]), + )); + }); - test('Compute compiled class hash for ABI types contract', () async { - final contractPath = - '${Directory.current.path}/../../contracts/cairo1/artifacts/abi_types_compiled.txt'; - final expectedHashesPath = - '${Directory.current.path}/../../contracts/cairo1/artifacts/abi_types.hashes.json'; - final content = await File(expectedHashesPath).readAsString(); - final expectedHashes = await json.decode(content); - final contract = await CASMCompiledContract.fromPath(contractPath); - final classHash = contract.classHash(); - expect( - classHash, - equals( - BigInt.parse(expectedHashes["compiled_class_hash"]), - )); - }); + test('Compute sierra class hash for ABI types contract', () async { + final contractPath = + '${Directory.current.path}/../../contracts/cairo1/artifacts/abi_types_sierra.txt'; + final expectedHashesPath = + '${Directory.current.path}/../../contracts/cairo1/artifacts/abi_types.hashes.json'; + final content = await File(expectedHashesPath).readAsString(); + final expectedHashes = await json.decode(content); + final contract = await CompiledContract.fromPath(contractPath); + final classHash = contract.classHash(); + expect( + classHash, + equals( + BigInt.parse(expectedHashes["sierra_class_hash"]), + )); }); - group('Contract address', () { - test('Compute contract address', () async { - // data are coming from starknet-rs - final salt = Felt.fromHexString( - "0x0018a7a329d1d85b621350f2b5fc9c64b2e57dfe708525f0aff2c90de1e5b9c8", - ); - final classHash = Felt.fromHexString( - "0x0750cd490a7cd1572411169eaa8be292325990d33c5d4733655fe6b926985062", - ); - final calldata = [Felt.fromInt(1)]; - final contractAddress = Contract.computeAddress( - classHash: classHash, - calldata: calldata, - salt: salt, - ); - expect( - contractAddress, + test('Compute compiled class hash for ERC20 contract', () async { + final contractPath = + '${Directory.current.path}/../../contracts/cairo1/artifacts/erc20_compiled.txt'; + final expectedHashesPath = + '${Directory.current.path}/../../contracts/cairo1/artifacts/erc20.hashes.json'; + final content = await File(expectedHashesPath).readAsString(); + final expectedHashes = await json.decode(content); + final contract = await CASMCompiledContract.fromPath(contractPath); + final classHash = contract.classHash(); + expect( + classHash, equals( - Felt.fromHexString( - "0x00da27ef7c3869c3a6cc6a0f7bf07a51c3e590825adba8a51cae27d815839eec", - ), - ), - ); - }); + BigInt.parse(expectedHashes["compiled_class_hash"]), + )); + }); - test('Compute account address', () async { - // devnet values - final salt = devnetAccountSalt; - final classHash = devnetAccountClassHash; - // devnet account#1 public key - final publicKey = devnetAccount1PublicKey; - final accountAddress = Contract.computeAddress( - classHash: classHash, - calldata: [publicKey], - salt: salt, - ); - expect( - accountAddress, - equals(devnetAccount1Address), - ); - }); + test('Compute compiled class hash for ABI types contract', () async { + final contractPath = + '${Directory.current.path}/../../contracts/cairo1/artifacts/abi_types_compiled.txt'; + final expectedHashesPath = + '${Directory.current.path}/../../contracts/cairo1/artifacts/abi_types.hashes.json'; + final content = await File(expectedHashesPath).readAsString(); + final expectedHashes = await json.decode(content); + final contract = await CASMCompiledContract.fromPath(contractPath); + final classHash = contract.classHash(); + expect( + classHash, + equals( + BigInt.parse(expectedHashes["compiled_class_hash"]), + )); }); - }, - tags: ['unit'], - ); + }); + }, skip: true); + + group('Contract address', () { + test('Compute contract address', () async { + // data are coming from starknet-rs + final salt = Felt.fromHexString( + "0x0018a7a329d1d85b621350f2b5fc9c64b2e57dfe708525f0aff2c90de1e5b9c8", + ); + final classHash = Felt.fromHexString( + "0x0750cd490a7cd1572411169eaa8be292325990d33c5d4733655fe6b926985062", + ); + final calldata = [Felt.fromInt(1)]; + final contractAddress = Contract.computeAddress( + classHash: classHash, + calldata: calldata, + salt: salt, + ); + expect( + contractAddress, + equals( + Felt.fromHexString( + "0x00da27ef7c3869c3a6cc6a0f7bf07a51c3e590825adba8a51cae27d815839eec", + ), + ), + ); + }); + + test('Compute account address', () async { + // devnet values + final salt = devnetAccountSalt; + final classHash = devnetAccountClassHash; + // devnet account#1 public key + final publicKey = devnetAccount1PublicKey; + final accountAddress = Contract.computeAddress( + classHash: classHash, + calldata: [publicKey], + salt: salt, + ); + expect( + accountAddress, + equals(devnetAccount1Address), + ); + }); + }, tags: ['unit'], skip: true); } diff --git a/packages/starknet/test/contract/parse_test.dart b/packages/starknet/test/contract/parse_test.dart index 53f36ad3..0b14a7b4 100644 --- a/packages/starknet/test/contract/parse_test.dart +++ b/packages/starknet/test/contract/parse_test.dart @@ -14,5 +14,5 @@ void main() { expect(compiledContract.abi?.length, equals(11)); }); }); - }, tags: ['unit']); + }, tags: ['unit'], skip: true); } diff --git a/packages/starknet_builder/dart_test.yaml b/packages/starknet_builder/dart_test.yaml new file mode 100644 index 00000000..a94c9421 --- /dev/null +++ b/packages/starknet_builder/dart_test.yaml @@ -0,0 +1,3 @@ +tags: + unit: + integration-testnet: diff --git a/packages/starknet_builder/melos_starknet_builder.iml b/packages/starknet_builder/melos_starknet_builder.iml new file mode 100644 index 00000000..389d07a1 --- /dev/null +++ b/packages/starknet_builder/melos_starknet_builder.iml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/packages/starknet_builder/test/melos_test.dart b/packages/starknet_builder/test/melos_test.dart new file mode 100644 index 00000000..aa51d018 --- /dev/null +++ b/packages/starknet_builder/test/melos_test.dart @@ -0,0 +1,6 @@ +import 'package:test/test.dart'; + +void main() { + test('Prevent melos from failing when no test tagged unit', () {}, + tags: ['unit', 'integration']); +} diff --git a/packages/starknet_provider/analysis_options.yaml b/packages/starknet_provider/analysis_options.yaml index 572dd239..62a8984e 100644 --- a/packages/starknet_provider/analysis_options.yaml +++ b/packages/starknet_provider/analysis_options.yaml @@ -1 +1,5 @@ include: package:lints/recommended.yaml + +analyzer: + errors: + invalid_annotation_target: ignore diff --git a/packages/starknet_provider/dart_test.yaml b/packages/starknet_provider/dart_test.yaml new file mode 100644 index 00000000..a94c9421 --- /dev/null +++ b/packages/starknet_provider/dart_test.yaml @@ -0,0 +1,3 @@ +tags: + unit: + integration-testnet: diff --git a/packages/starknet_provider/example/starknet_provider_example.dart b/packages/starknet_provider/example/starknet_provider_example.dart index 485377cf..281758c5 100644 --- a/packages/starknet_provider/example/starknet_provider_example.dart +++ b/packages/starknet_provider/example/starknet_provider_example.dart @@ -1,5 +1,3 @@ -import 'package:starknet_provider/starknet_provider.dart'; - void main() { print('Starknet Provider Example'); } diff --git a/packages/starknet_provider/lib/src/model/block_hash_and_number.freezed.dart b/packages/starknet_provider/lib/src/model/block_hash_and_number.freezed.dart index 9683ce3f..9ead182f 100644 --- a/packages/starknet_provider/lib/src/model/block_hash_and_number.freezed.dart +++ b/packages/starknet_provider/lib/src/model/block_hash_and_number.freezed.dart @@ -12,7 +12,7 @@ part of 'block_hash_and_number.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); BlockHashAndNumber _$BlockHashAndNumberFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -92,10 +92,11 @@ class _$BlockHashAndNumberCopyWithImpl<$Res, $Val extends BlockHashAndNumber> } /// @nodoc -abstract class _$$BlockHashAndNumberResultCopyWith<$Res> { - factory _$$BlockHashAndNumberResultCopyWith(_$BlockHashAndNumberResult value, - $Res Function(_$BlockHashAndNumberResult) then) = - __$$BlockHashAndNumberResultCopyWithImpl<$Res>; +abstract class _$$BlockHashAndNumberResultImplCopyWith<$Res> { + factory _$$BlockHashAndNumberResultImplCopyWith( + _$BlockHashAndNumberResultImpl value, + $Res Function(_$BlockHashAndNumberResultImpl) then) = + __$$BlockHashAndNumberResultImplCopyWithImpl<$Res>; @useResult $Res call({BlockHashAndNumberResponseResult result}); @@ -103,11 +104,13 @@ abstract class _$$BlockHashAndNumberResultCopyWith<$Res> { } /// @nodoc -class __$$BlockHashAndNumberResultCopyWithImpl<$Res> - extends _$BlockHashAndNumberCopyWithImpl<$Res, _$BlockHashAndNumberResult> - implements _$$BlockHashAndNumberResultCopyWith<$Res> { - __$$BlockHashAndNumberResultCopyWithImpl(_$BlockHashAndNumberResult _value, - $Res Function(_$BlockHashAndNumberResult) _then) +class __$$BlockHashAndNumberResultImplCopyWithImpl<$Res> + extends _$BlockHashAndNumberCopyWithImpl<$Res, + _$BlockHashAndNumberResultImpl> + implements _$$BlockHashAndNumberResultImplCopyWith<$Res> { + __$$BlockHashAndNumberResultImplCopyWithImpl( + _$BlockHashAndNumberResultImpl _value, + $Res Function(_$BlockHashAndNumberResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -115,7 +118,7 @@ class __$$BlockHashAndNumberResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$BlockHashAndNumberResult( + return _then(_$BlockHashAndNumberResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -135,12 +138,13 @@ class __$$BlockHashAndNumberResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$BlockHashAndNumberResult implements BlockHashAndNumberResult { - const _$BlockHashAndNumberResult({required this.result, final String? $type}) +class _$BlockHashAndNumberResultImpl implements BlockHashAndNumberResult { + const _$BlockHashAndNumberResultImpl( + {required this.result, final String? $type}) : $type = $type ?? 'result'; - factory _$BlockHashAndNumberResult.fromJson(Map json) => - _$$BlockHashAndNumberResultFromJson(json); + factory _$BlockHashAndNumberResultImpl.fromJson(Map json) => + _$$BlockHashAndNumberResultImplFromJson(json); @override final BlockHashAndNumberResponseResult result; @@ -154,10 +158,10 @@ class _$BlockHashAndNumberResult implements BlockHashAndNumberResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$BlockHashAndNumberResult && + other is _$BlockHashAndNumberResultImpl && (identical(other.result, result) || other.result == result)); } @@ -168,10 +172,9 @@ class _$BlockHashAndNumberResult implements BlockHashAndNumberResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$BlockHashAndNumberResultCopyWith<_$BlockHashAndNumberResult> - get copyWith => - __$$BlockHashAndNumberResultCopyWithImpl<_$BlockHashAndNumberResult>( - this, _$identity); + _$$BlockHashAndNumberResultImplCopyWith<_$BlockHashAndNumberResultImpl> + get copyWith => __$$BlockHashAndNumberResultImplCopyWithImpl< + _$BlockHashAndNumberResultImpl>(this, _$identity); @override @optionalTypeArgs @@ -237,7 +240,7 @@ class _$BlockHashAndNumberResult implements BlockHashAndNumberResult { @override Map toJson() { - return _$$BlockHashAndNumberResultToJson( + return _$$BlockHashAndNumberResultImplToJson( this, ); } @@ -246,22 +249,23 @@ class _$BlockHashAndNumberResult implements BlockHashAndNumberResult { abstract class BlockHashAndNumberResult implements BlockHashAndNumber { const factory BlockHashAndNumberResult( {required final BlockHashAndNumberResponseResult result}) = - _$BlockHashAndNumberResult; + _$BlockHashAndNumberResultImpl; factory BlockHashAndNumberResult.fromJson(Map json) = - _$BlockHashAndNumberResult.fromJson; + _$BlockHashAndNumberResultImpl.fromJson; BlockHashAndNumberResponseResult get result; @JsonKey(ignore: true) - _$$BlockHashAndNumberResultCopyWith<_$BlockHashAndNumberResult> + _$$BlockHashAndNumberResultImplCopyWith<_$BlockHashAndNumberResultImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$BlockHashAndNumberErrorCopyWith<$Res> { - factory _$$BlockHashAndNumberErrorCopyWith(_$BlockHashAndNumberError value, - $Res Function(_$BlockHashAndNumberError) then) = - __$$BlockHashAndNumberErrorCopyWithImpl<$Res>; +abstract class _$$BlockHashAndNumberErrorImplCopyWith<$Res> { + factory _$$BlockHashAndNumberErrorImplCopyWith( + _$BlockHashAndNumberErrorImpl value, + $Res Function(_$BlockHashAndNumberErrorImpl) then) = + __$$BlockHashAndNumberErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -269,11 +273,13 @@ abstract class _$$BlockHashAndNumberErrorCopyWith<$Res> { } /// @nodoc -class __$$BlockHashAndNumberErrorCopyWithImpl<$Res> - extends _$BlockHashAndNumberCopyWithImpl<$Res, _$BlockHashAndNumberError> - implements _$$BlockHashAndNumberErrorCopyWith<$Res> { - __$$BlockHashAndNumberErrorCopyWithImpl(_$BlockHashAndNumberError _value, - $Res Function(_$BlockHashAndNumberError) _then) +class __$$BlockHashAndNumberErrorImplCopyWithImpl<$Res> + extends _$BlockHashAndNumberCopyWithImpl<$Res, + _$BlockHashAndNumberErrorImpl> + implements _$$BlockHashAndNumberErrorImplCopyWith<$Res> { + __$$BlockHashAndNumberErrorImplCopyWithImpl( + _$BlockHashAndNumberErrorImpl _value, + $Res Function(_$BlockHashAndNumberErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -281,7 +287,7 @@ class __$$BlockHashAndNumberErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$BlockHashAndNumberError( + return _then(_$BlockHashAndNumberErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -300,12 +306,13 @@ class __$$BlockHashAndNumberErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$BlockHashAndNumberError implements BlockHashAndNumberError { - const _$BlockHashAndNumberError({required this.error, final String? $type}) +class _$BlockHashAndNumberErrorImpl implements BlockHashAndNumberError { + const _$BlockHashAndNumberErrorImpl( + {required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$BlockHashAndNumberError.fromJson(Map json) => - _$$BlockHashAndNumberErrorFromJson(json); + factory _$BlockHashAndNumberErrorImpl.fromJson(Map json) => + _$$BlockHashAndNumberErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -319,10 +326,10 @@ class _$BlockHashAndNumberError implements BlockHashAndNumberError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$BlockHashAndNumberError && + other is _$BlockHashAndNumberErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -333,9 +340,9 @@ class _$BlockHashAndNumberError implements BlockHashAndNumberError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$BlockHashAndNumberErrorCopyWith<_$BlockHashAndNumberError> get copyWith => - __$$BlockHashAndNumberErrorCopyWithImpl<_$BlockHashAndNumberError>( - this, _$identity); + _$$BlockHashAndNumberErrorImplCopyWith<_$BlockHashAndNumberErrorImpl> + get copyWith => __$$BlockHashAndNumberErrorImplCopyWithImpl< + _$BlockHashAndNumberErrorImpl>(this, _$identity); @override @optionalTypeArgs @@ -401,7 +408,7 @@ class _$BlockHashAndNumberError implements BlockHashAndNumberError { @override Map toJson() { - return _$$BlockHashAndNumberErrorToJson( + return _$$BlockHashAndNumberErrorImplToJson( this, ); } @@ -409,15 +416,15 @@ class _$BlockHashAndNumberError implements BlockHashAndNumberError { abstract class BlockHashAndNumberError implements BlockHashAndNumber { const factory BlockHashAndNumberError( - {required final JsonRpcApiError error}) = _$BlockHashAndNumberError; + {required final JsonRpcApiError error}) = _$BlockHashAndNumberErrorImpl; factory BlockHashAndNumberError.fromJson(Map json) = - _$BlockHashAndNumberError.fromJson; + _$BlockHashAndNumberErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$BlockHashAndNumberErrorCopyWith<_$BlockHashAndNumberError> get copyWith => - throw _privateConstructorUsedError; + _$$BlockHashAndNumberErrorImplCopyWith<_$BlockHashAndNumberErrorImpl> + get copyWith => throw _privateConstructorUsedError; } BlockHashAndNumberResponseResult _$BlockHashAndNumberResponseResultFromJson( @@ -478,25 +485,25 @@ class _$BlockHashAndNumberResponseResultCopyWithImpl<$Res, } /// @nodoc -abstract class _$$_BlockHashAndNumberResponseResultCopyWith<$Res> +abstract class _$$BlockHashAndNumberResponseResultImplCopyWith<$Res> implements $BlockHashAndNumberResponseResultCopyWith<$Res> { - factory _$$_BlockHashAndNumberResponseResultCopyWith( - _$_BlockHashAndNumberResponseResult value, - $Res Function(_$_BlockHashAndNumberResponseResult) then) = - __$$_BlockHashAndNumberResponseResultCopyWithImpl<$Res>; + factory _$$BlockHashAndNumberResponseResultImplCopyWith( + _$BlockHashAndNumberResponseResultImpl value, + $Res Function(_$BlockHashAndNumberResponseResultImpl) then) = + __$$BlockHashAndNumberResponseResultImplCopyWithImpl<$Res>; @override @useResult $Res call({Felt blockHash, int blockNumber}); } /// @nodoc -class __$$_BlockHashAndNumberResponseResultCopyWithImpl<$Res> +class __$$BlockHashAndNumberResponseResultImplCopyWithImpl<$Res> extends _$BlockHashAndNumberResponseResultCopyWithImpl<$Res, - _$_BlockHashAndNumberResponseResult> - implements _$$_BlockHashAndNumberResponseResultCopyWith<$Res> { - __$$_BlockHashAndNumberResponseResultCopyWithImpl( - _$_BlockHashAndNumberResponseResult _value, - $Res Function(_$_BlockHashAndNumberResponseResult) _then) + _$BlockHashAndNumberResponseResultImpl> + implements _$$BlockHashAndNumberResponseResultImplCopyWith<$Res> { + __$$BlockHashAndNumberResponseResultImplCopyWithImpl( + _$BlockHashAndNumberResponseResultImpl _value, + $Res Function(_$BlockHashAndNumberResponseResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -505,7 +512,7 @@ class __$$_BlockHashAndNumberResponseResultCopyWithImpl<$Res> Object? blockHash = null, Object? blockNumber = null, }) { - return _then(_$_BlockHashAndNumberResponseResult( + return _then(_$BlockHashAndNumberResponseResultImpl( blockHash: null == blockHash ? _value.blockHash : blockHash // ignore: cast_nullable_to_non_nullable @@ -520,14 +527,14 @@ class __$$_BlockHashAndNumberResponseResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_BlockHashAndNumberResponseResult +class _$BlockHashAndNumberResponseResultImpl implements _BlockHashAndNumberResponseResult { - const _$_BlockHashAndNumberResponseResult( + const _$BlockHashAndNumberResponseResultImpl( {required this.blockHash, required this.blockNumber}); - factory _$_BlockHashAndNumberResponseResult.fromJson( + factory _$BlockHashAndNumberResponseResultImpl.fromJson( Map json) => - _$$_BlockHashAndNumberResponseResultFromJson(json); + _$$BlockHashAndNumberResponseResultImplFromJson(json); @override final Felt blockHash; @@ -540,10 +547,10 @@ class _$_BlockHashAndNumberResponseResult } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_BlockHashAndNumberResponseResult && + other is _$BlockHashAndNumberResponseResultImpl && (identical(other.blockHash, blockHash) || other.blockHash == blockHash) && (identical(other.blockNumber, blockNumber) || @@ -557,14 +564,14 @@ class _$_BlockHashAndNumberResponseResult @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_BlockHashAndNumberResponseResultCopyWith< - _$_BlockHashAndNumberResponseResult> - get copyWith => __$$_BlockHashAndNumberResponseResultCopyWithImpl< - _$_BlockHashAndNumberResponseResult>(this, _$identity); + _$$BlockHashAndNumberResponseResultImplCopyWith< + _$BlockHashAndNumberResponseResultImpl> + get copyWith => __$$BlockHashAndNumberResponseResultImplCopyWithImpl< + _$BlockHashAndNumberResponseResultImpl>(this, _$identity); @override Map toJson() { - return _$$_BlockHashAndNumberResponseResultToJson( + return _$$BlockHashAndNumberResponseResultImplToJson( this, ); } @@ -574,10 +581,11 @@ abstract class _BlockHashAndNumberResponseResult implements BlockHashAndNumberResponseResult { const factory _BlockHashAndNumberResponseResult( {required final Felt blockHash, - required final int blockNumber}) = _$_BlockHashAndNumberResponseResult; + required final int blockNumber}) = _$BlockHashAndNumberResponseResultImpl; factory _BlockHashAndNumberResponseResult.fromJson( - Map json) = _$_BlockHashAndNumberResponseResult.fromJson; + Map json) = + _$BlockHashAndNumberResponseResultImpl.fromJson; @override Felt get blockHash; @@ -585,7 +593,7 @@ abstract class _BlockHashAndNumberResponseResult int get blockNumber; @override @JsonKey(ignore: true) - _$$_BlockHashAndNumberResponseResultCopyWith< - _$_BlockHashAndNumberResponseResult> + _$$BlockHashAndNumberResponseResultImplCopyWith< + _$BlockHashAndNumberResponseResultImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/block_hash_and_number.g.dart b/packages/starknet_provider/lib/src/model/block_hash_and_number.g.dart index e65e4b31..ef435c76 100644 --- a/packages/starknet_provider/lib/src/model/block_hash_and_number.g.dart +++ b/packages/starknet_provider/lib/src/model/block_hash_and_number.g.dart @@ -6,44 +6,45 @@ part of 'block_hash_and_number.dart'; // JsonSerializableGenerator // ************************************************************************** -_$BlockHashAndNumberResult _$$BlockHashAndNumberResultFromJson( +_$BlockHashAndNumberResultImpl _$$BlockHashAndNumberResultImplFromJson( Map json) => - _$BlockHashAndNumberResult( + _$BlockHashAndNumberResultImpl( result: BlockHashAndNumberResponseResult.fromJson( json['result'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$BlockHashAndNumberResultToJson( - _$BlockHashAndNumberResult instance) => +Map _$$BlockHashAndNumberResultImplToJson( + _$BlockHashAndNumberResultImpl instance) => { 'result': instance.result.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$BlockHashAndNumberError _$$BlockHashAndNumberErrorFromJson( +_$BlockHashAndNumberErrorImpl _$$BlockHashAndNumberErrorImplFromJson( Map json) => - _$BlockHashAndNumberError( + _$BlockHashAndNumberErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$BlockHashAndNumberErrorToJson( - _$BlockHashAndNumberError instance) => +Map _$$BlockHashAndNumberErrorImplToJson( + _$BlockHashAndNumberErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$_BlockHashAndNumberResponseResult - _$$_BlockHashAndNumberResponseResultFromJson(Map json) => - _$_BlockHashAndNumberResponseResult( +_$BlockHashAndNumberResponseResultImpl + _$$BlockHashAndNumberResponseResultImplFromJson( + Map json) => + _$BlockHashAndNumberResponseResultImpl( blockHash: Felt.fromJson(json['block_hash'] as String), - blockNumber: json['block_number'] as int, + blockNumber: (json['block_number'] as num).toInt(), ); -Map _$$_BlockHashAndNumberResponseResultToJson( - _$_BlockHashAndNumberResponseResult instance) => +Map _$$BlockHashAndNumberResponseResultImplToJson( + _$BlockHashAndNumberResponseResultImpl instance) => { 'block_hash': instance.blockHash.toJson(), 'block_number': instance.blockNumber, diff --git a/packages/starknet_provider/lib/src/model/block_id.freezed.dart b/packages/starknet_provider/lib/src/model/block_id.freezed.dart index 139d521b..fff8febd 100644 --- a/packages/starknet_provider/lib/src/model/block_id.freezed.dart +++ b/packages/starknet_provider/lib/src/model/block_id.freezed.dart @@ -12,7 +12,7 @@ part of 'block_id.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); BlockId _$BlockIdFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -98,20 +98,20 @@ class _$BlockIdCopyWithImpl<$Res, $Val extends BlockId> } /// @nodoc -abstract class _$$BlockIdHashCopyWith<$Res> { - factory _$$BlockIdHashCopyWith( - _$BlockIdHash value, $Res Function(_$BlockIdHash) then) = - __$$BlockIdHashCopyWithImpl<$Res>; +abstract class _$$BlockIdHashImplCopyWith<$Res> { + factory _$$BlockIdHashImplCopyWith( + _$BlockIdHashImpl value, $Res Function(_$BlockIdHashImpl) then) = + __$$BlockIdHashImplCopyWithImpl<$Res>; @useResult $Res call({Felt blockHash}); } /// @nodoc -class __$$BlockIdHashCopyWithImpl<$Res> - extends _$BlockIdCopyWithImpl<$Res, _$BlockIdHash> - implements _$$BlockIdHashCopyWith<$Res> { - __$$BlockIdHashCopyWithImpl( - _$BlockIdHash _value, $Res Function(_$BlockIdHash) _then) +class __$$BlockIdHashImplCopyWithImpl<$Res> + extends _$BlockIdCopyWithImpl<$Res, _$BlockIdHashImpl> + implements _$$BlockIdHashImplCopyWith<$Res> { + __$$BlockIdHashImplCopyWithImpl( + _$BlockIdHashImpl _value, $Res Function(_$BlockIdHashImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -119,7 +119,7 @@ class __$$BlockIdHashCopyWithImpl<$Res> $Res call({ Object? blockHash = null, }) { - return _then(_$BlockIdHash( + return _then(_$BlockIdHashImpl( null == blockHash ? _value.blockHash : blockHash // ignore: cast_nullable_to_non_nullable @@ -130,13 +130,13 @@ class __$$BlockIdHashCopyWithImpl<$Res> /// @nodoc @JsonSerializable(createToJson: false) -class _$BlockIdHash extends BlockIdHash { - const _$BlockIdHash(this.blockHash, {final String? $type}) +class _$BlockIdHashImpl extends BlockIdHash { + const _$BlockIdHashImpl(this.blockHash, {final String? $type}) : $type = $type ?? 'blockHash', super._(); - factory _$BlockIdHash.fromJson(Map json) => - _$$BlockIdHashFromJson(json); + factory _$BlockIdHashImpl.fromJson(Map json) => + _$$BlockIdHashImplFromJson(json); @override final Felt blockHash; @@ -150,10 +150,10 @@ class _$BlockIdHash extends BlockIdHash { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$BlockIdHash && + other is _$BlockIdHashImpl && (identical(other.blockHash, blockHash) || other.blockHash == blockHash)); } @@ -165,8 +165,8 @@ class _$BlockIdHash extends BlockIdHash { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$BlockIdHashCopyWith<_$BlockIdHash> get copyWith => - __$$BlockIdHashCopyWithImpl<_$BlockIdHash>(this, _$identity); + _$$BlockIdHashImplCopyWith<_$BlockIdHashImpl> get copyWith => + __$$BlockIdHashImplCopyWithImpl<_$BlockIdHashImpl>(this, _$identity); @override @optionalTypeArgs @@ -238,33 +238,33 @@ class _$BlockIdHash extends BlockIdHash { } abstract class BlockIdHash extends BlockId { - const factory BlockIdHash(final Felt blockHash) = _$BlockIdHash; + const factory BlockIdHash(final Felt blockHash) = _$BlockIdHashImpl; const BlockIdHash._() : super._(); factory BlockIdHash.fromJson(Map json) = - _$BlockIdHash.fromJson; + _$BlockIdHashImpl.fromJson; Felt get blockHash; @JsonKey(ignore: true) - _$$BlockIdHashCopyWith<_$BlockIdHash> get copyWith => + _$$BlockIdHashImplCopyWith<_$BlockIdHashImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$BlockIdNumberCopyWith<$Res> { - factory _$$BlockIdNumberCopyWith( - _$BlockIdNumber value, $Res Function(_$BlockIdNumber) then) = - __$$BlockIdNumberCopyWithImpl<$Res>; +abstract class _$$BlockIdNumberImplCopyWith<$Res> { + factory _$$BlockIdNumberImplCopyWith( + _$BlockIdNumberImpl value, $Res Function(_$BlockIdNumberImpl) then) = + __$$BlockIdNumberImplCopyWithImpl<$Res>; @useResult $Res call({int blockNumber}); } /// @nodoc -class __$$BlockIdNumberCopyWithImpl<$Res> - extends _$BlockIdCopyWithImpl<$Res, _$BlockIdNumber> - implements _$$BlockIdNumberCopyWith<$Res> { - __$$BlockIdNumberCopyWithImpl( - _$BlockIdNumber _value, $Res Function(_$BlockIdNumber) _then) +class __$$BlockIdNumberImplCopyWithImpl<$Res> + extends _$BlockIdCopyWithImpl<$Res, _$BlockIdNumberImpl> + implements _$$BlockIdNumberImplCopyWith<$Res> { + __$$BlockIdNumberImplCopyWithImpl( + _$BlockIdNumberImpl _value, $Res Function(_$BlockIdNumberImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -272,7 +272,7 @@ class __$$BlockIdNumberCopyWithImpl<$Res> $Res call({ Object? blockNumber = null, }) { - return _then(_$BlockIdNumber( + return _then(_$BlockIdNumberImpl( null == blockNumber ? _value.blockNumber : blockNumber // ignore: cast_nullable_to_non_nullable @@ -283,13 +283,13 @@ class __$$BlockIdNumberCopyWithImpl<$Res> /// @nodoc @JsonSerializable(createToJson: false) -class _$BlockIdNumber extends BlockIdNumber { - const _$BlockIdNumber(this.blockNumber, {final String? $type}) +class _$BlockIdNumberImpl extends BlockIdNumber { + const _$BlockIdNumberImpl(this.blockNumber, {final String? $type}) : $type = $type ?? 'blockNumber', super._(); - factory _$BlockIdNumber.fromJson(Map json) => - _$$BlockIdNumberFromJson(json); + factory _$BlockIdNumberImpl.fromJson(Map json) => + _$$BlockIdNumberImplFromJson(json); @override final int blockNumber; @@ -303,10 +303,10 @@ class _$BlockIdNumber extends BlockIdNumber { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$BlockIdNumber && + other is _$BlockIdNumberImpl && (identical(other.blockNumber, blockNumber) || other.blockNumber == blockNumber)); } @@ -318,8 +318,8 @@ class _$BlockIdNumber extends BlockIdNumber { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$BlockIdNumberCopyWith<_$BlockIdNumber> get copyWith => - __$$BlockIdNumberCopyWithImpl<_$BlockIdNumber>(this, _$identity); + _$$BlockIdNumberImplCopyWith<_$BlockIdNumberImpl> get copyWith => + __$$BlockIdNumberImplCopyWithImpl<_$BlockIdNumberImpl>(this, _$identity); @override @optionalTypeArgs @@ -391,33 +391,33 @@ class _$BlockIdNumber extends BlockIdNumber { } abstract class BlockIdNumber extends BlockId { - const factory BlockIdNumber(final int blockNumber) = _$BlockIdNumber; + const factory BlockIdNumber(final int blockNumber) = _$BlockIdNumberImpl; const BlockIdNumber._() : super._(); factory BlockIdNumber.fromJson(Map json) = - _$BlockIdNumber.fromJson; + _$BlockIdNumberImpl.fromJson; int get blockNumber; @JsonKey(ignore: true) - _$$BlockIdNumberCopyWith<_$BlockIdNumber> get copyWith => + _$$BlockIdNumberImplCopyWith<_$BlockIdNumberImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$BlockIdTagCopyWith<$Res> { - factory _$$BlockIdTagCopyWith( - _$BlockIdTag value, $Res Function(_$BlockIdTag) then) = - __$$BlockIdTagCopyWithImpl<$Res>; +abstract class _$$BlockIdTagImplCopyWith<$Res> { + factory _$$BlockIdTagImplCopyWith( + _$BlockIdTagImpl value, $Res Function(_$BlockIdTagImpl) then) = + __$$BlockIdTagImplCopyWithImpl<$Res>; @useResult $Res call({String blockTag}); } /// @nodoc -class __$$BlockIdTagCopyWithImpl<$Res> - extends _$BlockIdCopyWithImpl<$Res, _$BlockIdTag> - implements _$$BlockIdTagCopyWith<$Res> { - __$$BlockIdTagCopyWithImpl( - _$BlockIdTag _value, $Res Function(_$BlockIdTag) _then) +class __$$BlockIdTagImplCopyWithImpl<$Res> + extends _$BlockIdCopyWithImpl<$Res, _$BlockIdTagImpl> + implements _$$BlockIdTagImplCopyWith<$Res> { + __$$BlockIdTagImplCopyWithImpl( + _$BlockIdTagImpl _value, $Res Function(_$BlockIdTagImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -425,7 +425,7 @@ class __$$BlockIdTagCopyWithImpl<$Res> $Res call({ Object? blockTag = null, }) { - return _then(_$BlockIdTag( + return _then(_$BlockIdTagImpl( null == blockTag ? _value.blockTag : blockTag // ignore: cast_nullable_to_non_nullable @@ -436,13 +436,13 @@ class __$$BlockIdTagCopyWithImpl<$Res> /// @nodoc @JsonSerializable(createToJson: false) -class _$BlockIdTag extends BlockIdTag { - const _$BlockIdTag(this.blockTag, {final String? $type}) +class _$BlockIdTagImpl extends BlockIdTag { + const _$BlockIdTagImpl(this.blockTag, {final String? $type}) : $type = $type ?? 'blockTag', super._(); - factory _$BlockIdTag.fromJson(Map json) => - _$$BlockIdTagFromJson(json); + factory _$BlockIdTagImpl.fromJson(Map json) => + _$$BlockIdTagImplFromJson(json); @override final String blockTag; @@ -456,10 +456,10 @@ class _$BlockIdTag extends BlockIdTag { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$BlockIdTag && + other is _$BlockIdTagImpl && (identical(other.blockTag, blockTag) || other.blockTag == blockTag)); } @@ -471,8 +471,8 @@ class _$BlockIdTag extends BlockIdTag { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$BlockIdTagCopyWith<_$BlockIdTag> get copyWith => - __$$BlockIdTagCopyWithImpl<_$BlockIdTag>(this, _$identity); + _$$BlockIdTagImplCopyWith<_$BlockIdTagImpl> get copyWith => + __$$BlockIdTagImplCopyWithImpl<_$BlockIdTagImpl>(this, _$identity); @override @optionalTypeArgs @@ -544,14 +544,14 @@ class _$BlockIdTag extends BlockIdTag { } abstract class BlockIdTag extends BlockId { - const factory BlockIdTag(final String blockTag) = _$BlockIdTag; + const factory BlockIdTag(final String blockTag) = _$BlockIdTagImpl; const BlockIdTag._() : super._(); factory BlockIdTag.fromJson(Map json) = - _$BlockIdTag.fromJson; + _$BlockIdTagImpl.fromJson; String get blockTag; @JsonKey(ignore: true) - _$$BlockIdTagCopyWith<_$BlockIdTag> get copyWith => + _$$BlockIdTagImplCopyWith<_$BlockIdTagImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/block_id.g.dart b/packages/starknet_provider/lib/src/model/block_id.g.dart index 8ffca39e..e98e196f 100644 --- a/packages/starknet_provider/lib/src/model/block_id.g.dart +++ b/packages/starknet_provider/lib/src/model/block_id.g.dart @@ -6,19 +6,20 @@ part of 'block_id.dart'; // JsonSerializableGenerator // ************************************************************************** -_$BlockIdHash _$$BlockIdHashFromJson(Map json) => - _$BlockIdHash( +_$BlockIdHashImpl _$$BlockIdHashImplFromJson(Map json) => + _$BlockIdHashImpl( Felt.fromJson(json['block_hash'] as String), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -_$BlockIdNumber _$$BlockIdNumberFromJson(Map json) => - _$BlockIdNumber( - json['block_number'] as int, +_$BlockIdNumberImpl _$$BlockIdNumberImplFromJson(Map json) => + _$BlockIdNumberImpl( + (json['block_number'] as num).toInt(), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -_$BlockIdTag _$$BlockIdTagFromJson(Map json) => _$BlockIdTag( +_$BlockIdTagImpl _$$BlockIdTagImplFromJson(Map json) => + _$BlockIdTagImpl( json['block_tag'] as String, $type: json['starkNetRuntimeTypeToRemove'] as String?, ); diff --git a/packages/starknet_provider/lib/src/model/block_number.freezed.dart b/packages/starknet_provider/lib/src/model/block_number.freezed.dart index 8f22e2db..900f553f 100644 --- a/packages/starknet_provider/lib/src/model/block_number.freezed.dart +++ b/packages/starknet_provider/lib/src/model/block_number.freezed.dart @@ -12,7 +12,7 @@ part of 'block_number.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); BlockNumber _$BlockNumberFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -92,20 +92,20 @@ class _$BlockNumberCopyWithImpl<$Res, $Val extends BlockNumber> } /// @nodoc -abstract class _$$BlockNumberResultCopyWith<$Res> { - factory _$$BlockNumberResultCopyWith( - _$BlockNumberResult value, $Res Function(_$BlockNumberResult) then) = - __$$BlockNumberResultCopyWithImpl<$Res>; +abstract class _$$BlockNumberResultImplCopyWith<$Res> { + factory _$$BlockNumberResultImplCopyWith(_$BlockNumberResultImpl value, + $Res Function(_$BlockNumberResultImpl) then) = + __$$BlockNumberResultImplCopyWithImpl<$Res>; @useResult $Res call({int result}); } /// @nodoc -class __$$BlockNumberResultCopyWithImpl<$Res> - extends _$BlockNumberCopyWithImpl<$Res, _$BlockNumberResult> - implements _$$BlockNumberResultCopyWith<$Res> { - __$$BlockNumberResultCopyWithImpl( - _$BlockNumberResult _value, $Res Function(_$BlockNumberResult) _then) +class __$$BlockNumberResultImplCopyWithImpl<$Res> + extends _$BlockNumberCopyWithImpl<$Res, _$BlockNumberResultImpl> + implements _$$BlockNumberResultImplCopyWith<$Res> { + __$$BlockNumberResultImplCopyWithImpl(_$BlockNumberResultImpl _value, + $Res Function(_$BlockNumberResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -113,7 +113,7 @@ class __$$BlockNumberResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$BlockNumberResult( + return _then(_$BlockNumberResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -124,12 +124,12 @@ class __$$BlockNumberResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$BlockNumberResult implements BlockNumberResult { - const _$BlockNumberResult({required this.result, final String? $type}) +class _$BlockNumberResultImpl implements BlockNumberResult { + const _$BlockNumberResultImpl({required this.result, final String? $type}) : $type = $type ?? 'result'; - factory _$BlockNumberResult.fromJson(Map json) => - _$$BlockNumberResultFromJson(json); + factory _$BlockNumberResultImpl.fromJson(Map json) => + _$$BlockNumberResultImplFromJson(json); @override final int result; @@ -143,10 +143,10 @@ class _$BlockNumberResult implements BlockNumberResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$BlockNumberResult && + other is _$BlockNumberResultImpl && (identical(other.result, result) || other.result == result)); } @@ -157,8 +157,9 @@ class _$BlockNumberResult implements BlockNumberResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$BlockNumberResultCopyWith<_$BlockNumberResult> get copyWith => - __$$BlockNumberResultCopyWithImpl<_$BlockNumberResult>(this, _$identity); + _$$BlockNumberResultImplCopyWith<_$BlockNumberResultImpl> get copyWith => + __$$BlockNumberResultImplCopyWithImpl<_$BlockNumberResultImpl>( + this, _$identity); @override @optionalTypeArgs @@ -224,7 +225,7 @@ class _$BlockNumberResult implements BlockNumberResult { @override Map toJson() { - return _$$BlockNumberResultToJson( + return _$$BlockNumberResultImplToJson( this, ); } @@ -232,22 +233,22 @@ class _$BlockNumberResult implements BlockNumberResult { abstract class BlockNumberResult implements BlockNumber { const factory BlockNumberResult({required final int result}) = - _$BlockNumberResult; + _$BlockNumberResultImpl; factory BlockNumberResult.fromJson(Map json) = - _$BlockNumberResult.fromJson; + _$BlockNumberResultImpl.fromJson; int get result; @JsonKey(ignore: true) - _$$BlockNumberResultCopyWith<_$BlockNumberResult> get copyWith => + _$$BlockNumberResultImplCopyWith<_$BlockNumberResultImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$BlockNumberErrorCopyWith<$Res> { - factory _$$BlockNumberErrorCopyWith( - _$BlockNumberError value, $Res Function(_$BlockNumberError) then) = - __$$BlockNumberErrorCopyWithImpl<$Res>; +abstract class _$$BlockNumberErrorImplCopyWith<$Res> { + factory _$$BlockNumberErrorImplCopyWith(_$BlockNumberErrorImpl value, + $Res Function(_$BlockNumberErrorImpl) then) = + __$$BlockNumberErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -255,11 +256,11 @@ abstract class _$$BlockNumberErrorCopyWith<$Res> { } /// @nodoc -class __$$BlockNumberErrorCopyWithImpl<$Res> - extends _$BlockNumberCopyWithImpl<$Res, _$BlockNumberError> - implements _$$BlockNumberErrorCopyWith<$Res> { - __$$BlockNumberErrorCopyWithImpl( - _$BlockNumberError _value, $Res Function(_$BlockNumberError) _then) +class __$$BlockNumberErrorImplCopyWithImpl<$Res> + extends _$BlockNumberCopyWithImpl<$Res, _$BlockNumberErrorImpl> + implements _$$BlockNumberErrorImplCopyWith<$Res> { + __$$BlockNumberErrorImplCopyWithImpl(_$BlockNumberErrorImpl _value, + $Res Function(_$BlockNumberErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -267,7 +268,7 @@ class __$$BlockNumberErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$BlockNumberError( + return _then(_$BlockNumberErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -286,12 +287,12 @@ class __$$BlockNumberErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$BlockNumberError implements BlockNumberError { - const _$BlockNumberError({required this.error, final String? $type}) +class _$BlockNumberErrorImpl implements BlockNumberError { + const _$BlockNumberErrorImpl({required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$BlockNumberError.fromJson(Map json) => - _$$BlockNumberErrorFromJson(json); + factory _$BlockNumberErrorImpl.fromJson(Map json) => + _$$BlockNumberErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -305,10 +306,10 @@ class _$BlockNumberError implements BlockNumberError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$BlockNumberError && + other is _$BlockNumberErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -319,8 +320,9 @@ class _$BlockNumberError implements BlockNumberError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$BlockNumberErrorCopyWith<_$BlockNumberError> get copyWith => - __$$BlockNumberErrorCopyWithImpl<_$BlockNumberError>(this, _$identity); + _$$BlockNumberErrorImplCopyWith<_$BlockNumberErrorImpl> get copyWith => + __$$BlockNumberErrorImplCopyWithImpl<_$BlockNumberErrorImpl>( + this, _$identity); @override @optionalTypeArgs @@ -386,7 +388,7 @@ class _$BlockNumberError implements BlockNumberError { @override Map toJson() { - return _$$BlockNumberErrorToJson( + return _$$BlockNumberErrorImplToJson( this, ); } @@ -394,13 +396,13 @@ class _$BlockNumberError implements BlockNumberError { abstract class BlockNumberError implements BlockNumber { const factory BlockNumberError({required final JsonRpcApiError error}) = - _$BlockNumberError; + _$BlockNumberErrorImpl; factory BlockNumberError.fromJson(Map json) = - _$BlockNumberError.fromJson; + _$BlockNumberErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$BlockNumberErrorCopyWith<_$BlockNumberError> get copyWith => + _$$BlockNumberErrorImplCopyWith<_$BlockNumberErrorImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/block_number.g.dart b/packages/starknet_provider/lib/src/model/block_number.g.dart index d6e87d09..0b873c30 100644 --- a/packages/starknet_provider/lib/src/model/block_number.g.dart +++ b/packages/starknet_provider/lib/src/model/block_number.g.dart @@ -6,25 +6,29 @@ part of 'block_number.dart'; // JsonSerializableGenerator // ************************************************************************** -_$BlockNumberResult _$$BlockNumberResultFromJson(Map json) => - _$BlockNumberResult( - result: json['result'] as int, +_$BlockNumberResultImpl _$$BlockNumberResultImplFromJson( + Map json) => + _$BlockNumberResultImpl( + result: (json['result'] as num).toInt(), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$BlockNumberResultToJson(_$BlockNumberResult instance) => +Map _$$BlockNumberResultImplToJson( + _$BlockNumberResultImpl instance) => { 'result': instance.result, 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$BlockNumberError _$$BlockNumberErrorFromJson(Map json) => - _$BlockNumberError( +_$BlockNumberErrorImpl _$$BlockNumberErrorImplFromJson( + Map json) => + _$BlockNumberErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$BlockNumberErrorToJson(_$BlockNumberError instance) => +Map _$$BlockNumberErrorImplToJson( + _$BlockNumberErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, diff --git a/packages/starknet_provider/lib/src/model/call.freezed.dart b/packages/starknet_provider/lib/src/model/call.freezed.dart index 4bf84da5..b2ae7364 100644 --- a/packages/starknet_provider/lib/src/model/call.freezed.dart +++ b/packages/starknet_provider/lib/src/model/call.freezed.dart @@ -12,7 +12,7 @@ part of 'call.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); Call _$CallFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -91,20 +91,20 @@ class _$CallCopyWithImpl<$Res, $Val extends Call> } /// @nodoc -abstract class _$$CallResultCopyWith<$Res> { - factory _$$CallResultCopyWith( - _$CallResult value, $Res Function(_$CallResult) then) = - __$$CallResultCopyWithImpl<$Res>; +abstract class _$$CallResultImplCopyWith<$Res> { + factory _$$CallResultImplCopyWith( + _$CallResultImpl value, $Res Function(_$CallResultImpl) then) = + __$$CallResultImplCopyWithImpl<$Res>; @useResult $Res call({List result}); } /// @nodoc -class __$$CallResultCopyWithImpl<$Res> - extends _$CallCopyWithImpl<$Res, _$CallResult> - implements _$$CallResultCopyWith<$Res> { - __$$CallResultCopyWithImpl( - _$CallResult _value, $Res Function(_$CallResult) _then) +class __$$CallResultImplCopyWithImpl<$Res> + extends _$CallCopyWithImpl<$Res, _$CallResultImpl> + implements _$$CallResultImplCopyWith<$Res> { + __$$CallResultImplCopyWithImpl( + _$CallResultImpl _value, $Res Function(_$CallResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -112,7 +112,7 @@ class __$$CallResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$CallResult( + return _then(_$CallResultImpl( result: null == result ? _value._result : result // ignore: cast_nullable_to_non_nullable @@ -123,13 +123,14 @@ class __$$CallResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$CallResult implements CallResult { - const _$CallResult({required final List result, final String? $type}) +class _$CallResultImpl implements CallResult { + const _$CallResultImpl( + {required final List result, final String? $type}) : _result = result, $type = $type ?? 'result'; - factory _$CallResult.fromJson(Map json) => - _$$CallResultFromJson(json); + factory _$CallResultImpl.fromJson(Map json) => + _$$CallResultImplFromJson(json); final List _result; @override @@ -148,10 +149,10 @@ class _$CallResult implements CallResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$CallResult && + other is _$CallResultImpl && const DeepCollectionEquality().equals(other._result, _result)); } @@ -163,8 +164,8 @@ class _$CallResult implements CallResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$CallResultCopyWith<_$CallResult> get copyWith => - __$$CallResultCopyWithImpl<_$CallResult>(this, _$identity); + _$$CallResultImplCopyWith<_$CallResultImpl> get copyWith => + __$$CallResultImplCopyWithImpl<_$CallResultImpl>(this, _$identity); @override @optionalTypeArgs @@ -230,29 +231,30 @@ class _$CallResult implements CallResult { @override Map toJson() { - return _$$CallResultToJson( + return _$$CallResultImplToJson( this, ); } } abstract class CallResult implements Call { - const factory CallResult({required final List result}) = _$CallResult; + const factory CallResult({required final List result}) = + _$CallResultImpl; factory CallResult.fromJson(Map json) = - _$CallResult.fromJson; + _$CallResultImpl.fromJson; List get result; @JsonKey(ignore: true) - _$$CallResultCopyWith<_$CallResult> get copyWith => + _$$CallResultImplCopyWith<_$CallResultImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$CallErrorCopyWith<$Res> { - factory _$$CallErrorCopyWith( - _$CallError value, $Res Function(_$CallError) then) = - __$$CallErrorCopyWithImpl<$Res>; +abstract class _$$CallErrorImplCopyWith<$Res> { + factory _$$CallErrorImplCopyWith( + _$CallErrorImpl value, $Res Function(_$CallErrorImpl) then) = + __$$CallErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -260,11 +262,11 @@ abstract class _$$CallErrorCopyWith<$Res> { } /// @nodoc -class __$$CallErrorCopyWithImpl<$Res> - extends _$CallCopyWithImpl<$Res, _$CallError> - implements _$$CallErrorCopyWith<$Res> { - __$$CallErrorCopyWithImpl( - _$CallError _value, $Res Function(_$CallError) _then) +class __$$CallErrorImplCopyWithImpl<$Res> + extends _$CallCopyWithImpl<$Res, _$CallErrorImpl> + implements _$$CallErrorImplCopyWith<$Res> { + __$$CallErrorImplCopyWithImpl( + _$CallErrorImpl _value, $Res Function(_$CallErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -272,7 +274,7 @@ class __$$CallErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$CallError( + return _then(_$CallErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -291,12 +293,12 @@ class __$$CallErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$CallError implements CallError { - const _$CallError({required this.error, final String? $type}) +class _$CallErrorImpl implements CallError { + const _$CallErrorImpl({required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$CallError.fromJson(Map json) => - _$$CallErrorFromJson(json); + factory _$CallErrorImpl.fromJson(Map json) => + _$$CallErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -310,10 +312,10 @@ class _$CallError implements CallError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$CallError && + other is _$CallErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -324,8 +326,8 @@ class _$CallError implements CallError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$CallErrorCopyWith<_$CallError> get copyWith => - __$$CallErrorCopyWithImpl<_$CallError>(this, _$identity); + _$$CallErrorImplCopyWith<_$CallErrorImpl> get copyWith => + __$$CallErrorImplCopyWithImpl<_$CallErrorImpl>(this, _$identity); @override @optionalTypeArgs @@ -391,19 +393,21 @@ class _$CallError implements CallError { @override Map toJson() { - return _$$CallErrorToJson( + return _$$CallErrorImplToJson( this, ); } } abstract class CallError implements Call { - const factory CallError({required final JsonRpcApiError error}) = _$CallError; + const factory CallError({required final JsonRpcApiError error}) = + _$CallErrorImpl; - factory CallError.fromJson(Map json) = _$CallError.fromJson; + factory CallError.fromJson(Map json) = + _$CallErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$CallErrorCopyWith<_$CallError> get copyWith => + _$$CallErrorImplCopyWith<_$CallErrorImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/call.g.dart b/packages/starknet_provider/lib/src/model/call.g.dart index d5030767..aebcdebb 100644 --- a/packages/starknet_provider/lib/src/model/call.g.dart +++ b/packages/starknet_provider/lib/src/model/call.g.dart @@ -6,25 +6,27 @@ part of 'call.dart'; // JsonSerializableGenerator // ************************************************************************** -_$CallResult _$$CallResultFromJson(Map json) => _$CallResult( +_$CallResultImpl _$$CallResultImplFromJson(Map json) => + _$CallResultImpl( result: (json['result'] as List) .map((e) => Felt.fromJson(e as String)) .toList(), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$CallResultToJson(_$CallResult instance) => +Map _$$CallResultImplToJson(_$CallResultImpl instance) => { 'result': instance.result.map((e) => e.toJson()).toList(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$CallError _$$CallErrorFromJson(Map json) => _$CallError( +_$CallErrorImpl _$$CallErrorImplFromJson(Map json) => + _$CallErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$CallErrorToJson(_$CallError instance) => +Map _$$CallErrorImplToJson(_$CallErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, diff --git a/packages/starknet_provider/lib/src/model/chain_id.freezed.dart b/packages/starknet_provider/lib/src/model/chain_id.freezed.dart index 63d3cee5..f847a5b5 100644 --- a/packages/starknet_provider/lib/src/model/chain_id.freezed.dart +++ b/packages/starknet_provider/lib/src/model/chain_id.freezed.dart @@ -12,7 +12,7 @@ part of 'chain_id.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); ChainId _$ChainIdFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -91,20 +91,20 @@ class _$ChainIdCopyWithImpl<$Res, $Val extends ChainId> } /// @nodoc -abstract class _$$ChainIdResultCopyWith<$Res> { - factory _$$ChainIdResultCopyWith( - _$ChainIdResult value, $Res Function(_$ChainIdResult) then) = - __$$ChainIdResultCopyWithImpl<$Res>; +abstract class _$$ChainIdResultImplCopyWith<$Res> { + factory _$$ChainIdResultImplCopyWith( + _$ChainIdResultImpl value, $Res Function(_$ChainIdResultImpl) then) = + __$$ChainIdResultImplCopyWithImpl<$Res>; @useResult $Res call({String result}); } /// @nodoc -class __$$ChainIdResultCopyWithImpl<$Res> - extends _$ChainIdCopyWithImpl<$Res, _$ChainIdResult> - implements _$$ChainIdResultCopyWith<$Res> { - __$$ChainIdResultCopyWithImpl( - _$ChainIdResult _value, $Res Function(_$ChainIdResult) _then) +class __$$ChainIdResultImplCopyWithImpl<$Res> + extends _$ChainIdCopyWithImpl<$Res, _$ChainIdResultImpl> + implements _$$ChainIdResultImplCopyWith<$Res> { + __$$ChainIdResultImplCopyWithImpl( + _$ChainIdResultImpl _value, $Res Function(_$ChainIdResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -112,7 +112,7 @@ class __$$ChainIdResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$ChainIdResult( + return _then(_$ChainIdResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -123,12 +123,12 @@ class __$$ChainIdResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$ChainIdResult implements ChainIdResult { - const _$ChainIdResult({required this.result, final String? $type}) +class _$ChainIdResultImpl implements ChainIdResult { + const _$ChainIdResultImpl({required this.result, final String? $type}) : $type = $type ?? 'result'; - factory _$ChainIdResult.fromJson(Map json) => - _$$ChainIdResultFromJson(json); + factory _$ChainIdResultImpl.fromJson(Map json) => + _$$ChainIdResultImplFromJson(json); @override final String result; @@ -142,10 +142,10 @@ class _$ChainIdResult implements ChainIdResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$ChainIdResult && + other is _$ChainIdResultImpl && (identical(other.result, result) || other.result == result)); } @@ -156,8 +156,8 @@ class _$ChainIdResult implements ChainIdResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$ChainIdResultCopyWith<_$ChainIdResult> get copyWith => - __$$ChainIdResultCopyWithImpl<_$ChainIdResult>(this, _$identity); + _$$ChainIdResultImplCopyWith<_$ChainIdResultImpl> get copyWith => + __$$ChainIdResultImplCopyWithImpl<_$ChainIdResultImpl>(this, _$identity); @override @optionalTypeArgs @@ -223,29 +223,30 @@ class _$ChainIdResult implements ChainIdResult { @override Map toJson() { - return _$$ChainIdResultToJson( + return _$$ChainIdResultImplToJson( this, ); } } abstract class ChainIdResult implements ChainId { - const factory ChainIdResult({required final String result}) = _$ChainIdResult; + const factory ChainIdResult({required final String result}) = + _$ChainIdResultImpl; factory ChainIdResult.fromJson(Map json) = - _$ChainIdResult.fromJson; + _$ChainIdResultImpl.fromJson; String get result; @JsonKey(ignore: true) - _$$ChainIdResultCopyWith<_$ChainIdResult> get copyWith => + _$$ChainIdResultImplCopyWith<_$ChainIdResultImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$ChainIdErrorCopyWith<$Res> { - factory _$$ChainIdErrorCopyWith( - _$ChainIdError value, $Res Function(_$ChainIdError) then) = - __$$ChainIdErrorCopyWithImpl<$Res>; +abstract class _$$ChainIdErrorImplCopyWith<$Res> { + factory _$$ChainIdErrorImplCopyWith( + _$ChainIdErrorImpl value, $Res Function(_$ChainIdErrorImpl) then) = + __$$ChainIdErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -253,11 +254,11 @@ abstract class _$$ChainIdErrorCopyWith<$Res> { } /// @nodoc -class __$$ChainIdErrorCopyWithImpl<$Res> - extends _$ChainIdCopyWithImpl<$Res, _$ChainIdError> - implements _$$ChainIdErrorCopyWith<$Res> { - __$$ChainIdErrorCopyWithImpl( - _$ChainIdError _value, $Res Function(_$ChainIdError) _then) +class __$$ChainIdErrorImplCopyWithImpl<$Res> + extends _$ChainIdCopyWithImpl<$Res, _$ChainIdErrorImpl> + implements _$$ChainIdErrorImplCopyWith<$Res> { + __$$ChainIdErrorImplCopyWithImpl( + _$ChainIdErrorImpl _value, $Res Function(_$ChainIdErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -265,7 +266,7 @@ class __$$ChainIdErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$ChainIdError( + return _then(_$ChainIdErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -284,12 +285,12 @@ class __$$ChainIdErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$ChainIdError implements ChainIdError { - const _$ChainIdError({required this.error, final String? $type}) +class _$ChainIdErrorImpl implements ChainIdError { + const _$ChainIdErrorImpl({required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$ChainIdError.fromJson(Map json) => - _$$ChainIdErrorFromJson(json); + factory _$ChainIdErrorImpl.fromJson(Map json) => + _$$ChainIdErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -303,10 +304,10 @@ class _$ChainIdError implements ChainIdError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$ChainIdError && + other is _$ChainIdErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -317,8 +318,8 @@ class _$ChainIdError implements ChainIdError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$ChainIdErrorCopyWith<_$ChainIdError> get copyWith => - __$$ChainIdErrorCopyWithImpl<_$ChainIdError>(this, _$identity); + _$$ChainIdErrorImplCopyWith<_$ChainIdErrorImpl> get copyWith => + __$$ChainIdErrorImplCopyWithImpl<_$ChainIdErrorImpl>(this, _$identity); @override @optionalTypeArgs @@ -384,7 +385,7 @@ class _$ChainIdError implements ChainIdError { @override Map toJson() { - return _$$ChainIdErrorToJson( + return _$$ChainIdErrorImplToJson( this, ); } @@ -392,13 +393,13 @@ class _$ChainIdError implements ChainIdError { abstract class ChainIdError implements ChainId { const factory ChainIdError({required final JsonRpcApiError error}) = - _$ChainIdError; + _$ChainIdErrorImpl; factory ChainIdError.fromJson(Map json) = - _$ChainIdError.fromJson; + _$ChainIdErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$ChainIdErrorCopyWith<_$ChainIdError> get copyWith => + _$$ChainIdErrorImplCopyWith<_$ChainIdErrorImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/chain_id.g.dart b/packages/starknet_provider/lib/src/model/chain_id.g.dart index ae41d770..523e6f0b 100644 --- a/packages/starknet_provider/lib/src/model/chain_id.g.dart +++ b/packages/starknet_provider/lib/src/model/chain_id.g.dart @@ -6,25 +6,25 @@ part of 'chain_id.dart'; // JsonSerializableGenerator // ************************************************************************** -_$ChainIdResult _$$ChainIdResultFromJson(Map json) => - _$ChainIdResult( +_$ChainIdResultImpl _$$ChainIdResultImplFromJson(Map json) => + _$ChainIdResultImpl( result: json['result'] as String, $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$ChainIdResultToJson(_$ChainIdResult instance) => +Map _$$ChainIdResultImplToJson(_$ChainIdResultImpl instance) => { 'result': instance.result, 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$ChainIdError _$$ChainIdErrorFromJson(Map json) => - _$ChainIdError( +_$ChainIdErrorImpl _$$ChainIdErrorImplFromJson(Map json) => + _$ChainIdErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$ChainIdErrorToJson(_$ChainIdError instance) => +Map _$$ChainIdErrorImplToJson(_$ChainIdErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, diff --git a/packages/starknet_provider/lib/src/model/contract_class.freezed.dart b/packages/starknet_provider/lib/src/model/contract_class.freezed.dart index 015acbdb..6f58b076 100644 --- a/packages/starknet_provider/lib/src/model/contract_class.freezed.dart +++ b/packages/starknet_provider/lib/src/model/contract_class.freezed.dart @@ -12,7 +12,7 @@ part of 'contract_class.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); SierraContractClass _$SierraContractClassFromJson(Map json) { return _SierraContractClass.fromJson(json); @@ -94,11 +94,11 @@ class _$SierraContractClassCopyWithImpl<$Res, $Val extends SierraContractClass> } /// @nodoc -abstract class _$$_SierraContractClassCopyWith<$Res> +abstract class _$$SierraContractClassImplCopyWith<$Res> implements $SierraContractClassCopyWith<$Res> { - factory _$$_SierraContractClassCopyWith(_$_SierraContractClass value, - $Res Function(_$_SierraContractClass) then) = - __$$_SierraContractClassCopyWithImpl<$Res>; + factory _$$SierraContractClassImplCopyWith(_$SierraContractClassImpl value, + $Res Function(_$SierraContractClassImpl) then) = + __$$SierraContractClassImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -112,11 +112,11 @@ abstract class _$$_SierraContractClassCopyWith<$Res> } /// @nodoc -class __$$_SierraContractClassCopyWithImpl<$Res> - extends _$SierraContractClassCopyWithImpl<$Res, _$_SierraContractClass> - implements _$$_SierraContractClassCopyWith<$Res> { - __$$_SierraContractClassCopyWithImpl(_$_SierraContractClass _value, - $Res Function(_$_SierraContractClass) _then) +class __$$SierraContractClassImplCopyWithImpl<$Res> + extends _$SierraContractClassCopyWithImpl<$Res, _$SierraContractClassImpl> + implements _$$SierraContractClassImplCopyWith<$Res> { + __$$SierraContractClassImplCopyWithImpl(_$SierraContractClassImpl _value, + $Res Function(_$SierraContractClassImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -127,7 +127,7 @@ class __$$_SierraContractClassCopyWithImpl<$Res> Object? entryPointsByType = null, Object? abi = freezed, }) { - return _then(_$_SierraContractClass( + return _then(_$SierraContractClassImpl( sierraProgram: null == sierraProgram ? _value._sierraProgram : sierraProgram // ignore: cast_nullable_to_non_nullable @@ -150,16 +150,16 @@ class __$$_SierraContractClassCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_SierraContractClass implements _SierraContractClass { - const _$_SierraContractClass( +class _$SierraContractClassImpl implements _SierraContractClass { + const _$SierraContractClassImpl( {required final List sierraProgram, required this.contractClassVersion, required this.entryPointsByType, this.abi}) : _sierraProgram = sierraProgram; - factory _$_SierraContractClass.fromJson(Map json) => - _$$_SierraContractClassFromJson(json); + factory _$SierraContractClassImpl.fromJson(Map json) => + _$$SierraContractClassImplFromJson(json); final List _sierraProgram; @override @@ -182,10 +182,10 @@ class _$_SierraContractClass implements _SierraContractClass { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_SierraContractClass && + other is _$SierraContractClassImpl && const DeepCollectionEquality() .equals(other._sierraProgram, _sierraProgram) && (identical(other.contractClassVersion, contractClassVersion) || @@ -207,13 +207,13 @@ class _$_SierraContractClass implements _SierraContractClass { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_SierraContractClassCopyWith<_$_SierraContractClass> get copyWith => - __$$_SierraContractClassCopyWithImpl<_$_SierraContractClass>( + _$$SierraContractClassImplCopyWith<_$SierraContractClassImpl> get copyWith => + __$$SierraContractClassImplCopyWithImpl<_$SierraContractClassImpl>( this, _$identity); @override Map toJson() { - return _$$_SierraContractClassToJson( + return _$$SierraContractClassImplToJson( this, ); } @@ -224,10 +224,10 @@ abstract class _SierraContractClass implements SierraContractClass { {required final List sierraProgram, required final String contractClassVersion, required final EntryPointsByType entryPointsByType, - final String? abi}) = _$_SierraContractClass; + final String? abi}) = _$SierraContractClassImpl; factory _SierraContractClass.fromJson(Map json) = - _$_SierraContractClass.fromJson; + _$SierraContractClassImpl.fromJson; @override List get sierraProgram; @@ -239,7 +239,7 @@ abstract class _SierraContractClass implements SierraContractClass { String? get abi; @override @JsonKey(ignore: true) - _$$_SierraContractClassCopyWith<_$_SierraContractClass> get copyWith => + _$$SierraContractClassImplCopyWith<_$SierraContractClassImpl> get copyWith => throw _privateConstructorUsedError; } @@ -321,11 +321,12 @@ class _$DeprecatedContractClassCopyWithImpl<$Res, } /// @nodoc -abstract class _$$_DeprecatedContractClassCopyWith<$Res> +abstract class _$$DeprecatedContractClassImplCopyWith<$Res> implements $DeprecatedContractClassCopyWith<$Res> { - factory _$$_DeprecatedContractClassCopyWith(_$_DeprecatedContractClass value, - $Res Function(_$_DeprecatedContractClass) then) = - __$$_DeprecatedContractClassCopyWithImpl<$Res>; + factory _$$DeprecatedContractClassImplCopyWith( + _$DeprecatedContractClassImpl value, + $Res Function(_$DeprecatedContractClassImpl) then) = + __$$DeprecatedContractClassImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -338,12 +339,13 @@ abstract class _$$_DeprecatedContractClassCopyWith<$Res> } /// @nodoc -class __$$_DeprecatedContractClassCopyWithImpl<$Res> +class __$$DeprecatedContractClassImplCopyWithImpl<$Res> extends _$DeprecatedContractClassCopyWithImpl<$Res, - _$_DeprecatedContractClass> - implements _$$_DeprecatedContractClassCopyWith<$Res> { - __$$_DeprecatedContractClassCopyWithImpl(_$_DeprecatedContractClass _value, - $Res Function(_$_DeprecatedContractClass) _then) + _$DeprecatedContractClassImpl> + implements _$$DeprecatedContractClassImplCopyWith<$Res> { + __$$DeprecatedContractClassImplCopyWithImpl( + _$DeprecatedContractClassImpl _value, + $Res Function(_$DeprecatedContractClassImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -353,7 +355,7 @@ class __$$_DeprecatedContractClassCopyWithImpl<$Res> Object? entryPointsByType = null, Object? abi = freezed, }) { - return _then(_$_DeprecatedContractClass( + return _then(_$DeprecatedContractClassImpl( program: null == program ? _value.program : program // ignore: cast_nullable_to_non_nullable @@ -372,15 +374,15 @@ class __$$_DeprecatedContractClassCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_DeprecatedContractClass implements _DeprecatedContractClass { - const _$_DeprecatedContractClass( +class _$DeprecatedContractClassImpl implements _DeprecatedContractClass { + const _$DeprecatedContractClassImpl( {required this.program, required this.entryPointsByType, final List? abi}) : _abi = abi; - factory _$_DeprecatedContractClass.fromJson(Map json) => - _$$_DeprecatedContractClassFromJson(json); + factory _$DeprecatedContractClassImpl.fromJson(Map json) => + _$$DeprecatedContractClassImplFromJson(json); @override final String program; @@ -402,10 +404,10 @@ class _$_DeprecatedContractClass implements _DeprecatedContractClass { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_DeprecatedContractClass && + other is _$DeprecatedContractClassImpl && (identical(other.program, program) || other.program == program) && (identical(other.entryPointsByType, entryPointsByType) || other.entryPointsByType == entryPointsByType) && @@ -420,14 +422,13 @@ class _$_DeprecatedContractClass implements _DeprecatedContractClass { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_DeprecatedContractClassCopyWith<_$_DeprecatedContractClass> - get copyWith => - __$$_DeprecatedContractClassCopyWithImpl<_$_DeprecatedContractClass>( - this, _$identity); + _$$DeprecatedContractClassImplCopyWith<_$DeprecatedContractClassImpl> + get copyWith => __$$DeprecatedContractClassImplCopyWithImpl< + _$DeprecatedContractClassImpl>(this, _$identity); @override Map toJson() { - return _$$_DeprecatedContractClassToJson( + return _$$DeprecatedContractClassImplToJson( this, ); } @@ -438,10 +439,10 @@ abstract class _DeprecatedContractClass implements DeprecatedContractClass { {required final String program, required final DeprecatedCairoEntryPointsByType entryPointsByType, final List? abi}) = - _$_DeprecatedContractClass; + _$DeprecatedContractClassImpl; factory _DeprecatedContractClass.fromJson(Map json) = - _$_DeprecatedContractClass.fromJson; + _$DeprecatedContractClassImpl.fromJson; @override String get program; @@ -451,6 +452,6 @@ abstract class _DeprecatedContractClass implements DeprecatedContractClass { List? get abi; @override @JsonKey(ignore: true) - _$$_DeprecatedContractClassCopyWith<_$_DeprecatedContractClass> + _$$DeprecatedContractClassImplCopyWith<_$DeprecatedContractClassImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/contract_class.g.dart b/packages/starknet_provider/lib/src/model/contract_class.g.dart index 508ba840..394886de 100644 --- a/packages/starknet_provider/lib/src/model/contract_class.g.dart +++ b/packages/starknet_provider/lib/src/model/contract_class.g.dart @@ -6,9 +6,9 @@ part of 'contract_class.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_SierraContractClass _$$_SierraContractClassFromJson( +_$SierraContractClassImpl _$$SierraContractClassImplFromJson( Map json) => - _$_SierraContractClass( + _$SierraContractClassImpl( sierraProgram: (json['sierra_program'] as List) .map((e) => Felt.fromJson(e as String)) .toList(), @@ -18,8 +18,8 @@ _$_SierraContractClass _$$_SierraContractClassFromJson( abi: json['abi'] as String?, ); -Map _$$_SierraContractClassToJson( - _$_SierraContractClass instance) => +Map _$$SierraContractClassImplToJson( + _$SierraContractClassImpl instance) => { 'sierra_program': instance.sierraProgram.map((e) => e.toJson()).toList(), 'contract_class_version': instance.contractClassVersion, @@ -27,9 +27,9 @@ Map _$$_SierraContractClassToJson( 'abi': instance.abi, }; -_$_DeprecatedContractClass _$$_DeprecatedContractClassFromJson( +_$DeprecatedContractClassImpl _$$DeprecatedContractClassImplFromJson( Map json) => - _$_DeprecatedContractClass( + _$DeprecatedContractClassImpl( program: json['program'] as String, entryPointsByType: DeprecatedCairoEntryPointsByType.fromJson( json['entry_points_by_type'] as Map), @@ -39,8 +39,8 @@ _$_DeprecatedContractClass _$$_DeprecatedContractClassFromJson( .toList(), ); -Map _$$_DeprecatedContractClassToJson( - _$_DeprecatedContractClass instance) => +Map _$$DeprecatedContractClassImplToJson( + _$DeprecatedContractClassImpl instance) => { 'program': instance.program, 'entry_points_by_type': instance.entryPointsByType.toJson(), diff --git a/packages/starknet_provider/lib/src/model/contract_storage_diff_item.freezed.dart b/packages/starknet_provider/lib/src/model/contract_storage_diff_item.freezed.dart index 4f42305d..a1cfaf71 100644 --- a/packages/starknet_provider/lib/src/model/contract_storage_diff_item.freezed.dart +++ b/packages/starknet_provider/lib/src/model/contract_storage_diff_item.freezed.dart @@ -12,7 +12,7 @@ part of 'contract_storage_diff_item.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); ContractStorageDiffItem _$ContractStorageDiffItemFromJson( Map json) { @@ -70,23 +70,25 @@ class _$ContractStorageDiffItemCopyWithImpl<$Res, } /// @nodoc -abstract class _$$_ContractStorageDiffItemCopyWith<$Res> +abstract class _$$ContractStorageDiffItemImplCopyWith<$Res> implements $ContractStorageDiffItemCopyWith<$Res> { - factory _$$_ContractStorageDiffItemCopyWith(_$_ContractStorageDiffItem value, - $Res Function(_$_ContractStorageDiffItem) then) = - __$$_ContractStorageDiffItemCopyWithImpl<$Res>; + factory _$$ContractStorageDiffItemImplCopyWith( + _$ContractStorageDiffItemImpl value, + $Res Function(_$ContractStorageDiffItemImpl) then) = + __$$ContractStorageDiffItemImplCopyWithImpl<$Res>; @override @useResult $Res call({Felt address, List storageEntries}); } /// @nodoc -class __$$_ContractStorageDiffItemCopyWithImpl<$Res> +class __$$ContractStorageDiffItemImplCopyWithImpl<$Res> extends _$ContractStorageDiffItemCopyWithImpl<$Res, - _$_ContractStorageDiffItem> - implements _$$_ContractStorageDiffItemCopyWith<$Res> { - __$$_ContractStorageDiffItemCopyWithImpl(_$_ContractStorageDiffItem _value, - $Res Function(_$_ContractStorageDiffItem) _then) + _$ContractStorageDiffItemImpl> + implements _$$ContractStorageDiffItemImplCopyWith<$Res> { + __$$ContractStorageDiffItemImplCopyWithImpl( + _$ContractStorageDiffItemImpl _value, + $Res Function(_$ContractStorageDiffItemImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -95,7 +97,7 @@ class __$$_ContractStorageDiffItemCopyWithImpl<$Res> Object? address = null, Object? storageEntries = null, }) { - return _then(_$_ContractStorageDiffItem( + return _then(_$ContractStorageDiffItemImpl( address: null == address ? _value.address : address // ignore: cast_nullable_to_non_nullable @@ -110,13 +112,13 @@ class __$$_ContractStorageDiffItemCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_ContractStorageDiffItem implements _ContractStorageDiffItem { - const _$_ContractStorageDiffItem( +class _$ContractStorageDiffItemImpl implements _ContractStorageDiffItem { + const _$ContractStorageDiffItemImpl( {required this.address, required final List storageEntries}) : _storageEntries = storageEntries; - factory _$_ContractStorageDiffItem.fromJson(Map json) => - _$$_ContractStorageDiffItemFromJson(json); + factory _$ContractStorageDiffItemImpl.fromJson(Map json) => + _$$ContractStorageDiffItemImplFromJson(json); @override final Felt address; @@ -134,10 +136,10 @@ class _$_ContractStorageDiffItem implements _ContractStorageDiffItem { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_ContractStorageDiffItem && + other is _$ContractStorageDiffItemImpl && (identical(other.address, address) || other.address == address) && const DeepCollectionEquality() .equals(other._storageEntries, _storageEntries)); @@ -151,14 +153,13 @@ class _$_ContractStorageDiffItem implements _ContractStorageDiffItem { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_ContractStorageDiffItemCopyWith<_$_ContractStorageDiffItem> - get copyWith => - __$$_ContractStorageDiffItemCopyWithImpl<_$_ContractStorageDiffItem>( - this, _$identity); + _$$ContractStorageDiffItemImplCopyWith<_$ContractStorageDiffItemImpl> + get copyWith => __$$ContractStorageDiffItemImplCopyWithImpl< + _$ContractStorageDiffItemImpl>(this, _$identity); @override Map toJson() { - return _$$_ContractStorageDiffItemToJson( + return _$$ContractStorageDiffItemImplToJson( this, ); } @@ -168,10 +169,10 @@ abstract class _ContractStorageDiffItem implements ContractStorageDiffItem { const factory _ContractStorageDiffItem( {required final Felt address, required final List storageEntries}) = - _$_ContractStorageDiffItem; + _$ContractStorageDiffItemImpl; factory _ContractStorageDiffItem.fromJson(Map json) = - _$_ContractStorageDiffItem.fromJson; + _$ContractStorageDiffItemImpl.fromJson; @override Felt get address; @@ -179,7 +180,7 @@ abstract class _ContractStorageDiffItem implements ContractStorageDiffItem { List get storageEntries; @override @JsonKey(ignore: true) - _$$_ContractStorageDiffItemCopyWith<_$_ContractStorageDiffItem> + _$$ContractStorageDiffItemImplCopyWith<_$ContractStorageDiffItemImpl> get copyWith => throw _privateConstructorUsedError; } @@ -237,22 +238,22 @@ class _$StorageItemCopyWithImpl<$Res, $Val extends StorageItem> } /// @nodoc -abstract class _$$_StorageItemCopyWith<$Res> +abstract class _$$StorageItemImplCopyWith<$Res> implements $StorageItemCopyWith<$Res> { - factory _$$_StorageItemCopyWith( - _$_StorageItem value, $Res Function(_$_StorageItem) then) = - __$$_StorageItemCopyWithImpl<$Res>; + factory _$$StorageItemImplCopyWith( + _$StorageItemImpl value, $Res Function(_$StorageItemImpl) then) = + __$$StorageItemImplCopyWithImpl<$Res>; @override @useResult $Res call({Felt key, Felt value}); } /// @nodoc -class __$$_StorageItemCopyWithImpl<$Res> - extends _$StorageItemCopyWithImpl<$Res, _$_StorageItem> - implements _$$_StorageItemCopyWith<$Res> { - __$$_StorageItemCopyWithImpl( - _$_StorageItem _value, $Res Function(_$_StorageItem) _then) +class __$$StorageItemImplCopyWithImpl<$Res> + extends _$StorageItemCopyWithImpl<$Res, _$StorageItemImpl> + implements _$$StorageItemImplCopyWith<$Res> { + __$$StorageItemImplCopyWithImpl( + _$StorageItemImpl _value, $Res Function(_$StorageItemImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -261,7 +262,7 @@ class __$$_StorageItemCopyWithImpl<$Res> Object? key = null, Object? value = null, }) { - return _then(_$_StorageItem( + return _then(_$StorageItemImpl( key: null == key ? _value.key : key // ignore: cast_nullable_to_non_nullable @@ -276,11 +277,11 @@ class __$$_StorageItemCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_StorageItem implements _StorageItem { - const _$_StorageItem({required this.key, required this.value}); +class _$StorageItemImpl implements _StorageItem { + const _$StorageItemImpl({required this.key, required this.value}); - factory _$_StorageItem.fromJson(Map json) => - _$$_StorageItemFromJson(json); + factory _$StorageItemImpl.fromJson(Map json) => + _$$StorageItemImplFromJson(json); @override final Felt key; @@ -293,10 +294,10 @@ class _$_StorageItem implements _StorageItem { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_StorageItem && + other is _$StorageItemImpl && (identical(other.key, key) || other.key == key) && (identical(other.value, value) || other.value == value)); } @@ -308,12 +309,12 @@ class _$_StorageItem implements _StorageItem { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_StorageItemCopyWith<_$_StorageItem> get copyWith => - __$$_StorageItemCopyWithImpl<_$_StorageItem>(this, _$identity); + _$$StorageItemImplCopyWith<_$StorageItemImpl> get copyWith => + __$$StorageItemImplCopyWithImpl<_$StorageItemImpl>(this, _$identity); @override Map toJson() { - return _$$_StorageItemToJson( + return _$$StorageItemImplToJson( this, ); } @@ -321,10 +322,10 @@ class _$_StorageItem implements _StorageItem { abstract class _StorageItem implements StorageItem { const factory _StorageItem( - {required final Felt key, required final Felt value}) = _$_StorageItem; + {required final Felt key, required final Felt value}) = _$StorageItemImpl; factory _StorageItem.fromJson(Map json) = - _$_StorageItem.fromJson; + _$StorageItemImpl.fromJson; @override Felt get key; @@ -332,6 +333,6 @@ abstract class _StorageItem implements StorageItem { Felt get value; @override @JsonKey(ignore: true) - _$$_StorageItemCopyWith<_$_StorageItem> get copyWith => + _$$StorageItemImplCopyWith<_$StorageItemImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/contract_storage_diff_item.g.dart b/packages/starknet_provider/lib/src/model/contract_storage_diff_item.g.dart index f231a662..18203a66 100644 --- a/packages/starknet_provider/lib/src/model/contract_storage_diff_item.g.dart +++ b/packages/starknet_provider/lib/src/model/contract_storage_diff_item.g.dart @@ -6,30 +6,30 @@ part of 'contract_storage_diff_item.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_ContractStorageDiffItem _$$_ContractStorageDiffItemFromJson( +_$ContractStorageDiffItemImpl _$$ContractStorageDiffItemImplFromJson( Map json) => - _$_ContractStorageDiffItem( + _$ContractStorageDiffItemImpl( address: Felt.fromJson(json['address'] as String), storageEntries: (json['storage_entries'] as List) .map((e) => StorageItem.fromJson(e as Map)) .toList(), ); -Map _$$_ContractStorageDiffItemToJson( - _$_ContractStorageDiffItem instance) => +Map _$$ContractStorageDiffItemImplToJson( + _$ContractStorageDiffItemImpl instance) => { 'address': instance.address.toJson(), 'storage_entries': instance.storageEntries.map((e) => e.toJson()).toList(), }; -_$_StorageItem _$$_StorageItemFromJson(Map json) => - _$_StorageItem( +_$StorageItemImpl _$$StorageItemImplFromJson(Map json) => + _$StorageItemImpl( key: Felt.fromJson(json['key'] as String), value: Felt.fromJson(json['value'] as String), ); -Map _$$_StorageItemToJson(_$_StorageItem instance) => +Map _$$StorageItemImplToJson(_$StorageItemImpl instance) => { 'key': instance.key.toJson(), 'value': instance.value.toJson(), diff --git a/packages/starknet_provider/lib/src/model/declare_transaction.freezed.dart b/packages/starknet_provider/lib/src/model/declare_transaction.freezed.dart index d90d849d..64595808 100644 --- a/packages/starknet_provider/lib/src/model/declare_transaction.freezed.dart +++ b/packages/starknet_provider/lib/src/model/declare_transaction.freezed.dart @@ -12,7 +12,7 @@ part of 'declare_transaction.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); DeclareTransactionRequest _$DeclareTransactionRequestFromJson( Map json) { @@ -65,25 +65,25 @@ class _$DeclareTransactionRequestCopyWithImpl<$Res, } /// @nodoc -abstract class _$$_DeclareTransactionRequestCopyWith<$Res> +abstract class _$$DeclareTransactionRequestImplCopyWith<$Res> implements $DeclareTransactionRequestCopyWith<$Res> { - factory _$$_DeclareTransactionRequestCopyWith( - _$_DeclareTransactionRequest value, - $Res Function(_$_DeclareTransactionRequest) then) = - __$$_DeclareTransactionRequestCopyWithImpl<$Res>; + factory _$$DeclareTransactionRequestImplCopyWith( + _$DeclareTransactionRequestImpl value, + $Res Function(_$DeclareTransactionRequestImpl) then) = + __$$DeclareTransactionRequestImplCopyWithImpl<$Res>; @override @useResult $Res call({DeclareTransaction declareTransaction}); } /// @nodoc -class __$$_DeclareTransactionRequestCopyWithImpl<$Res> +class __$$DeclareTransactionRequestImplCopyWithImpl<$Res> extends _$DeclareTransactionRequestCopyWithImpl<$Res, - _$_DeclareTransactionRequest> - implements _$$_DeclareTransactionRequestCopyWith<$Res> { - __$$_DeclareTransactionRequestCopyWithImpl( - _$_DeclareTransactionRequest _value, - $Res Function(_$_DeclareTransactionRequest) _then) + _$DeclareTransactionRequestImpl> + implements _$$DeclareTransactionRequestImplCopyWith<$Res> { + __$$DeclareTransactionRequestImplCopyWithImpl( + _$DeclareTransactionRequestImpl _value, + $Res Function(_$DeclareTransactionRequestImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -91,7 +91,7 @@ class __$$_DeclareTransactionRequestCopyWithImpl<$Res> $Res call({ Object? declareTransaction = null, }) { - return _then(_$_DeclareTransactionRequest( + return _then(_$DeclareTransactionRequestImpl( declareTransaction: null == declareTransaction ? _value.declareTransaction : declareTransaction // ignore: cast_nullable_to_non_nullable @@ -102,11 +102,11 @@ class __$$_DeclareTransactionRequestCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_DeclareTransactionRequest implements _DeclareTransactionRequest { - const _$_DeclareTransactionRequest({required this.declareTransaction}); +class _$DeclareTransactionRequestImpl implements _DeclareTransactionRequest { + const _$DeclareTransactionRequestImpl({required this.declareTransaction}); - factory _$_DeclareTransactionRequest.fromJson(Map json) => - _$$_DeclareTransactionRequestFromJson(json); + factory _$DeclareTransactionRequestImpl.fromJson(Map json) => + _$$DeclareTransactionRequestImplFromJson(json); @override final DeclareTransaction declareTransaction; @@ -117,10 +117,10 @@ class _$_DeclareTransactionRequest implements _DeclareTransactionRequest { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_DeclareTransactionRequest && + other is _$DeclareTransactionRequestImpl && (identical(other.declareTransaction, declareTransaction) || other.declareTransaction == declareTransaction)); } @@ -132,13 +132,13 @@ class _$_DeclareTransactionRequest implements _DeclareTransactionRequest { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_DeclareTransactionRequestCopyWith<_$_DeclareTransactionRequest> - get copyWith => __$$_DeclareTransactionRequestCopyWithImpl< - _$_DeclareTransactionRequest>(this, _$identity); + _$$DeclareTransactionRequestImplCopyWith<_$DeclareTransactionRequestImpl> + get copyWith => __$$DeclareTransactionRequestImplCopyWithImpl< + _$DeclareTransactionRequestImpl>(this, _$identity); @override Map toJson() { - return _$$_DeclareTransactionRequestToJson( + return _$$DeclareTransactionRequestImplToJson( this, ); } @@ -147,16 +147,16 @@ class _$_DeclareTransactionRequest implements _DeclareTransactionRequest { abstract class _DeclareTransactionRequest implements DeclareTransactionRequest { const factory _DeclareTransactionRequest( {required final DeclareTransaction declareTransaction}) = - _$_DeclareTransactionRequest; + _$DeclareTransactionRequestImpl; factory _DeclareTransactionRequest.fromJson(Map json) = - _$_DeclareTransactionRequest.fromJson; + _$DeclareTransactionRequestImpl.fromJson; @override DeclareTransaction get declareTransaction; @override @JsonKey(ignore: true) - _$$_DeclareTransactionRequestCopyWith<_$_DeclareTransactionRequest> + _$$DeclareTransactionRequestImplCopyWith<_$DeclareTransactionRequestImpl> get copyWith => throw _privateConstructorUsedError; } @@ -264,11 +264,11 @@ class _$DeclareTransactionV1CopyWithImpl<$Res, } /// @nodoc -abstract class _$$_DeclareTransactionV1CopyWith<$Res> +abstract class _$$DeclareTransactionV1ImplCopyWith<$Res> implements $DeclareTransactionV1CopyWith<$Res> { - factory _$$_DeclareTransactionV1CopyWith(_$_DeclareTransactionV1 value, - $Res Function(_$_DeclareTransactionV1) then) = - __$$_DeclareTransactionV1CopyWithImpl<$Res>; + factory _$$DeclareTransactionV1ImplCopyWith(_$DeclareTransactionV1Impl value, + $Res Function(_$DeclareTransactionV1Impl) then) = + __$$DeclareTransactionV1ImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -285,11 +285,11 @@ abstract class _$$_DeclareTransactionV1CopyWith<$Res> } /// @nodoc -class __$$_DeclareTransactionV1CopyWithImpl<$Res> - extends _$DeclareTransactionV1CopyWithImpl<$Res, _$_DeclareTransactionV1> - implements _$$_DeclareTransactionV1CopyWith<$Res> { - __$$_DeclareTransactionV1CopyWithImpl(_$_DeclareTransactionV1 _value, - $Res Function(_$_DeclareTransactionV1) _then) +class __$$DeclareTransactionV1ImplCopyWithImpl<$Res> + extends _$DeclareTransactionV1CopyWithImpl<$Res, _$DeclareTransactionV1Impl> + implements _$$DeclareTransactionV1ImplCopyWith<$Res> { + __$$DeclareTransactionV1ImplCopyWithImpl(_$DeclareTransactionV1Impl _value, + $Res Function(_$DeclareTransactionV1Impl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -303,7 +303,7 @@ class __$$_DeclareTransactionV1CopyWithImpl<$Res> Object? senderAddress = null, Object? contractClass = null, }) { - return _then(_$_DeclareTransactionV1( + return _then(_$DeclareTransactionV1Impl( type: null == type ? _value.type : type // ignore: cast_nullable_to_non_nullable @@ -338,8 +338,8 @@ class __$$_DeclareTransactionV1CopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_DeclareTransactionV1 implements _DeclareTransactionV1 { - const _$_DeclareTransactionV1( +class _$DeclareTransactionV1Impl implements _DeclareTransactionV1 { + const _$DeclareTransactionV1Impl( {this.type = 'DECLARE', this.version = '0x1', required this.max_fee, @@ -349,8 +349,8 @@ class _$_DeclareTransactionV1 implements _DeclareTransactionV1 { required this.contractClass}) : _signature = signature; - factory _$_DeclareTransactionV1.fromJson(Map json) => - _$$_DeclareTransactionV1FromJson(json); + factory _$DeclareTransactionV1Impl.fromJson(Map json) => + _$$DeclareTransactionV1ImplFromJson(json); @override @JsonKey() @@ -381,10 +381,10 @@ class _$_DeclareTransactionV1 implements _DeclareTransactionV1 { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_DeclareTransactionV1 && + other is _$DeclareTransactionV1Impl && (identical(other.type, type) || other.type == type) && (identical(other.version, version) || other.version == version) && (identical(other.max_fee, max_fee) || other.max_fee == max_fee) && @@ -412,13 +412,14 @@ class _$_DeclareTransactionV1 implements _DeclareTransactionV1 { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_DeclareTransactionV1CopyWith<_$_DeclareTransactionV1> get copyWith => - __$$_DeclareTransactionV1CopyWithImpl<_$_DeclareTransactionV1>( - this, _$identity); + _$$DeclareTransactionV1ImplCopyWith<_$DeclareTransactionV1Impl> + get copyWith => + __$$DeclareTransactionV1ImplCopyWithImpl<_$DeclareTransactionV1Impl>( + this, _$identity); @override Map toJson() { - return _$$_DeclareTransactionV1ToJson( + return _$$DeclareTransactionV1ImplToJson( this, ); } @@ -433,10 +434,10 @@ abstract class _DeclareTransactionV1 implements DeclareTransactionV1 { required final List signature, required final Felt senderAddress, required final DeprecatedContractClass contractClass}) = - _$_DeclareTransactionV1; + _$DeclareTransactionV1Impl; factory _DeclareTransactionV1.fromJson(Map json) = - _$_DeclareTransactionV1.fromJson; + _$DeclareTransactionV1Impl.fromJson; @override String get type; @@ -454,8 +455,8 @@ abstract class _DeclareTransactionV1 implements DeclareTransactionV1 { DeprecatedContractClass get contractClass; @override @JsonKey(ignore: true) - _$$_DeclareTransactionV1CopyWith<_$_DeclareTransactionV1> get copyWith => - throw _privateConstructorUsedError; + _$$DeclareTransactionV1ImplCopyWith<_$DeclareTransactionV1Impl> + get copyWith => throw _privateConstructorUsedError; } DeclareTransactionV2 _$DeclareTransactionV2FromJson(Map json) { @@ -569,11 +570,11 @@ class _$DeclareTransactionV2CopyWithImpl<$Res, } /// @nodoc -abstract class _$$_DeclareTransactionV2CopyWith<$Res> +abstract class _$$DeclareTransactionV2ImplCopyWith<$Res> implements $DeclareTransactionV2CopyWith<$Res> { - factory _$$_DeclareTransactionV2CopyWith(_$_DeclareTransactionV2 value, - $Res Function(_$_DeclareTransactionV2) then) = - __$$_DeclareTransactionV2CopyWithImpl<$Res>; + factory _$$DeclareTransactionV2ImplCopyWith(_$DeclareTransactionV2Impl value, + $Res Function(_$DeclareTransactionV2Impl) then) = + __$$DeclareTransactionV2ImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -591,11 +592,11 @@ abstract class _$$_DeclareTransactionV2CopyWith<$Res> } /// @nodoc -class __$$_DeclareTransactionV2CopyWithImpl<$Res> - extends _$DeclareTransactionV2CopyWithImpl<$Res, _$_DeclareTransactionV2> - implements _$$_DeclareTransactionV2CopyWith<$Res> { - __$$_DeclareTransactionV2CopyWithImpl(_$_DeclareTransactionV2 _value, - $Res Function(_$_DeclareTransactionV2) _then) +class __$$DeclareTransactionV2ImplCopyWithImpl<$Res> + extends _$DeclareTransactionV2CopyWithImpl<$Res, _$DeclareTransactionV2Impl> + implements _$$DeclareTransactionV2ImplCopyWith<$Res> { + __$$DeclareTransactionV2ImplCopyWithImpl(_$DeclareTransactionV2Impl _value, + $Res Function(_$DeclareTransactionV2Impl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -610,7 +611,7 @@ class __$$_DeclareTransactionV2CopyWithImpl<$Res> Object? contractClass = null, Object? compiledClassHash = null, }) { - return _then(_$_DeclareTransactionV2( + return _then(_$DeclareTransactionV2Impl( type: null == type ? _value.type : type // ignore: cast_nullable_to_non_nullable @@ -649,8 +650,8 @@ class __$$_DeclareTransactionV2CopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_DeclareTransactionV2 implements _DeclareTransactionV2 { - const _$_DeclareTransactionV2( +class _$DeclareTransactionV2Impl implements _DeclareTransactionV2 { + const _$DeclareTransactionV2Impl( {this.type = 'DECLARE', this.version = '0x2', required this.max_fee, @@ -661,8 +662,8 @@ class _$_DeclareTransactionV2 implements _DeclareTransactionV2 { required this.compiledClassHash}) : _signature = signature; - factory _$_DeclareTransactionV2.fromJson(Map json) => - _$$_DeclareTransactionV2FromJson(json); + factory _$DeclareTransactionV2Impl.fromJson(Map json) => + _$$DeclareTransactionV2ImplFromJson(json); @override @JsonKey() @@ -695,10 +696,10 @@ class _$_DeclareTransactionV2 implements _DeclareTransactionV2 { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_DeclareTransactionV2 && + other is _$DeclareTransactionV2Impl && (identical(other.type, type) || other.type == type) && (identical(other.version, version) || other.version == version) && (identical(other.max_fee, max_fee) || other.max_fee == max_fee) && @@ -729,13 +730,14 @@ class _$_DeclareTransactionV2 implements _DeclareTransactionV2 { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_DeclareTransactionV2CopyWith<_$_DeclareTransactionV2> get copyWith => - __$$_DeclareTransactionV2CopyWithImpl<_$_DeclareTransactionV2>( - this, _$identity); + _$$DeclareTransactionV2ImplCopyWith<_$DeclareTransactionV2Impl> + get copyWith => + __$$DeclareTransactionV2ImplCopyWithImpl<_$DeclareTransactionV2Impl>( + this, _$identity); @override Map toJson() { - return _$$_DeclareTransactionV2ToJson( + return _$$DeclareTransactionV2ImplToJson( this, ); } @@ -750,10 +752,10 @@ abstract class _DeclareTransactionV2 implements DeclareTransactionV2 { required final List signature, required final Felt senderAddress, required final FlattenSierraContractClass contractClass, - required final Felt compiledClassHash}) = _$_DeclareTransactionV2; + required final Felt compiledClassHash}) = _$DeclareTransactionV2Impl; factory _DeclareTransactionV2.fromJson(Map json) = - _$_DeclareTransactionV2.fromJson; + _$DeclareTransactionV2Impl.fromJson; @override String get type; @@ -773,8 +775,8 @@ abstract class _DeclareTransactionV2 implements DeclareTransactionV2 { Felt get compiledClassHash; @override @JsonKey(ignore: true) - _$$_DeclareTransactionV2CopyWith<_$_DeclareTransactionV2> get copyWith => - throw _privateConstructorUsedError; + _$$DeclareTransactionV2ImplCopyWith<_$DeclareTransactionV2Impl> + get copyWith => throw _privateConstructorUsedError; } DeclareTransactionResponse _$DeclareTransactionResponseFromJson( @@ -858,10 +860,11 @@ class _$DeclareTransactionResponseCopyWithImpl<$Res, } /// @nodoc -abstract class _$$DeclareTransactionResultCopyWith<$Res> { - factory _$$DeclareTransactionResultCopyWith(_$DeclareTransactionResult value, - $Res Function(_$DeclareTransactionResult) then) = - __$$DeclareTransactionResultCopyWithImpl<$Res>; +abstract class _$$DeclareTransactionResultImplCopyWith<$Res> { + factory _$$DeclareTransactionResultImplCopyWith( + _$DeclareTransactionResultImpl value, + $Res Function(_$DeclareTransactionResultImpl) then) = + __$$DeclareTransactionResultImplCopyWithImpl<$Res>; @useResult $Res call({DeclareTransactionResponseResult result}); @@ -869,12 +872,13 @@ abstract class _$$DeclareTransactionResultCopyWith<$Res> { } /// @nodoc -class __$$DeclareTransactionResultCopyWithImpl<$Res> +class __$$DeclareTransactionResultImplCopyWithImpl<$Res> extends _$DeclareTransactionResponseCopyWithImpl<$Res, - _$DeclareTransactionResult> - implements _$$DeclareTransactionResultCopyWith<$Res> { - __$$DeclareTransactionResultCopyWithImpl(_$DeclareTransactionResult _value, - $Res Function(_$DeclareTransactionResult) _then) + _$DeclareTransactionResultImpl> + implements _$$DeclareTransactionResultImplCopyWith<$Res> { + __$$DeclareTransactionResultImplCopyWithImpl( + _$DeclareTransactionResultImpl _value, + $Res Function(_$DeclareTransactionResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -882,7 +886,7 @@ class __$$DeclareTransactionResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$DeclareTransactionResult( + return _then(_$DeclareTransactionResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -902,12 +906,13 @@ class __$$DeclareTransactionResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$DeclareTransactionResult implements DeclareTransactionResult { - const _$DeclareTransactionResult({required this.result, final String? $type}) +class _$DeclareTransactionResultImpl implements DeclareTransactionResult { + const _$DeclareTransactionResultImpl( + {required this.result, final String? $type}) : $type = $type ?? 'result'; - factory _$DeclareTransactionResult.fromJson(Map json) => - _$$DeclareTransactionResultFromJson(json); + factory _$DeclareTransactionResultImpl.fromJson(Map json) => + _$$DeclareTransactionResultImplFromJson(json); @override final DeclareTransactionResponseResult result; @@ -921,10 +926,10 @@ class _$DeclareTransactionResult implements DeclareTransactionResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$DeclareTransactionResult && + other is _$DeclareTransactionResultImpl && (identical(other.result, result) || other.result == result)); } @@ -935,10 +940,9 @@ class _$DeclareTransactionResult implements DeclareTransactionResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$DeclareTransactionResultCopyWith<_$DeclareTransactionResult> - get copyWith => - __$$DeclareTransactionResultCopyWithImpl<_$DeclareTransactionResult>( - this, _$identity); + _$$DeclareTransactionResultImplCopyWith<_$DeclareTransactionResultImpl> + get copyWith => __$$DeclareTransactionResultImplCopyWithImpl< + _$DeclareTransactionResultImpl>(this, _$identity); @override @optionalTypeArgs @@ -1004,7 +1008,7 @@ class _$DeclareTransactionResult implements DeclareTransactionResult { @override Map toJson() { - return _$$DeclareTransactionResultToJson( + return _$$DeclareTransactionResultImplToJson( this, ); } @@ -1013,22 +1017,23 @@ class _$DeclareTransactionResult implements DeclareTransactionResult { abstract class DeclareTransactionResult implements DeclareTransactionResponse { const factory DeclareTransactionResult( {required final DeclareTransactionResponseResult result}) = - _$DeclareTransactionResult; + _$DeclareTransactionResultImpl; factory DeclareTransactionResult.fromJson(Map json) = - _$DeclareTransactionResult.fromJson; + _$DeclareTransactionResultImpl.fromJson; DeclareTransactionResponseResult get result; @JsonKey(ignore: true) - _$$DeclareTransactionResultCopyWith<_$DeclareTransactionResult> + _$$DeclareTransactionResultImplCopyWith<_$DeclareTransactionResultImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$DeclareTransactionErrorCopyWith<$Res> { - factory _$$DeclareTransactionErrorCopyWith(_$DeclareTransactionError value, - $Res Function(_$DeclareTransactionError) then) = - __$$DeclareTransactionErrorCopyWithImpl<$Res>; +abstract class _$$DeclareTransactionErrorImplCopyWith<$Res> { + factory _$$DeclareTransactionErrorImplCopyWith( + _$DeclareTransactionErrorImpl value, + $Res Function(_$DeclareTransactionErrorImpl) then) = + __$$DeclareTransactionErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -1036,12 +1041,13 @@ abstract class _$$DeclareTransactionErrorCopyWith<$Res> { } /// @nodoc -class __$$DeclareTransactionErrorCopyWithImpl<$Res> +class __$$DeclareTransactionErrorImplCopyWithImpl<$Res> extends _$DeclareTransactionResponseCopyWithImpl<$Res, - _$DeclareTransactionError> - implements _$$DeclareTransactionErrorCopyWith<$Res> { - __$$DeclareTransactionErrorCopyWithImpl(_$DeclareTransactionError _value, - $Res Function(_$DeclareTransactionError) _then) + _$DeclareTransactionErrorImpl> + implements _$$DeclareTransactionErrorImplCopyWith<$Res> { + __$$DeclareTransactionErrorImplCopyWithImpl( + _$DeclareTransactionErrorImpl _value, + $Res Function(_$DeclareTransactionErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -1049,7 +1055,7 @@ class __$$DeclareTransactionErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$DeclareTransactionError( + return _then(_$DeclareTransactionErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -1068,12 +1074,13 @@ class __$$DeclareTransactionErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$DeclareTransactionError implements DeclareTransactionError { - const _$DeclareTransactionError({required this.error, final String? $type}) +class _$DeclareTransactionErrorImpl implements DeclareTransactionError { + const _$DeclareTransactionErrorImpl( + {required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$DeclareTransactionError.fromJson(Map json) => - _$$DeclareTransactionErrorFromJson(json); + factory _$DeclareTransactionErrorImpl.fromJson(Map json) => + _$$DeclareTransactionErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -1087,10 +1094,10 @@ class _$DeclareTransactionError implements DeclareTransactionError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$DeclareTransactionError && + other is _$DeclareTransactionErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -1101,9 +1108,9 @@ class _$DeclareTransactionError implements DeclareTransactionError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$DeclareTransactionErrorCopyWith<_$DeclareTransactionError> get copyWith => - __$$DeclareTransactionErrorCopyWithImpl<_$DeclareTransactionError>( - this, _$identity); + _$$DeclareTransactionErrorImplCopyWith<_$DeclareTransactionErrorImpl> + get copyWith => __$$DeclareTransactionErrorImplCopyWithImpl< + _$DeclareTransactionErrorImpl>(this, _$identity); @override @optionalTypeArgs @@ -1169,7 +1176,7 @@ class _$DeclareTransactionError implements DeclareTransactionError { @override Map toJson() { - return _$$DeclareTransactionErrorToJson( + return _$$DeclareTransactionErrorImplToJson( this, ); } @@ -1177,15 +1184,15 @@ class _$DeclareTransactionError implements DeclareTransactionError { abstract class DeclareTransactionError implements DeclareTransactionResponse { const factory DeclareTransactionError( - {required final JsonRpcApiError error}) = _$DeclareTransactionError; + {required final JsonRpcApiError error}) = _$DeclareTransactionErrorImpl; factory DeclareTransactionError.fromJson(Map json) = - _$DeclareTransactionError.fromJson; + _$DeclareTransactionErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$DeclareTransactionErrorCopyWith<_$DeclareTransactionError> get copyWith => - throw _privateConstructorUsedError; + _$$DeclareTransactionErrorImplCopyWith<_$DeclareTransactionErrorImpl> + get copyWith => throw _privateConstructorUsedError; } DeclareTransactionResponseResult _$DeclareTransactionResponseResultFromJson( @@ -1246,25 +1253,25 @@ class _$DeclareTransactionResponseResultCopyWithImpl<$Res, } /// @nodoc -abstract class _$$_DeclareTransactionResponseResultCopyWith<$Res> +abstract class _$$DeclareTransactionResponseResultImplCopyWith<$Res> implements $DeclareTransactionResponseResultCopyWith<$Res> { - factory _$$_DeclareTransactionResponseResultCopyWith( - _$_DeclareTransactionResponseResult value, - $Res Function(_$_DeclareTransactionResponseResult) then) = - __$$_DeclareTransactionResponseResultCopyWithImpl<$Res>; + factory _$$DeclareTransactionResponseResultImplCopyWith( + _$DeclareTransactionResponseResultImpl value, + $Res Function(_$DeclareTransactionResponseResultImpl) then) = + __$$DeclareTransactionResponseResultImplCopyWithImpl<$Res>; @override @useResult $Res call({Felt classHash, Felt transactionHash}); } /// @nodoc -class __$$_DeclareTransactionResponseResultCopyWithImpl<$Res> +class __$$DeclareTransactionResponseResultImplCopyWithImpl<$Res> extends _$DeclareTransactionResponseResultCopyWithImpl<$Res, - _$_DeclareTransactionResponseResult> - implements _$$_DeclareTransactionResponseResultCopyWith<$Res> { - __$$_DeclareTransactionResponseResultCopyWithImpl( - _$_DeclareTransactionResponseResult _value, - $Res Function(_$_DeclareTransactionResponseResult) _then) + _$DeclareTransactionResponseResultImpl> + implements _$$DeclareTransactionResponseResultImplCopyWith<$Res> { + __$$DeclareTransactionResponseResultImplCopyWithImpl( + _$DeclareTransactionResponseResultImpl _value, + $Res Function(_$DeclareTransactionResponseResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -1273,7 +1280,7 @@ class __$$_DeclareTransactionResponseResultCopyWithImpl<$Res> Object? classHash = null, Object? transactionHash = null, }) { - return _then(_$_DeclareTransactionResponseResult( + return _then(_$DeclareTransactionResponseResultImpl( classHash: null == classHash ? _value.classHash : classHash // ignore: cast_nullable_to_non_nullable @@ -1288,14 +1295,14 @@ class __$$_DeclareTransactionResponseResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_DeclareTransactionResponseResult +class _$DeclareTransactionResponseResultImpl implements _DeclareTransactionResponseResult { - const _$_DeclareTransactionResponseResult( + const _$DeclareTransactionResponseResultImpl( {required this.classHash, required this.transactionHash}); - factory _$_DeclareTransactionResponseResult.fromJson( + factory _$DeclareTransactionResponseResultImpl.fromJson( Map json) => - _$$_DeclareTransactionResponseResultFromJson(json); + _$$DeclareTransactionResponseResultImplFromJson(json); @override final Felt classHash; @@ -1308,10 +1315,10 @@ class _$_DeclareTransactionResponseResult } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_DeclareTransactionResponseResult && + other is _$DeclareTransactionResponseResultImpl && (identical(other.classHash, classHash) || other.classHash == classHash) && (identical(other.transactionHash, transactionHash) || @@ -1325,14 +1332,14 @@ class _$_DeclareTransactionResponseResult @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_DeclareTransactionResponseResultCopyWith< - _$_DeclareTransactionResponseResult> - get copyWith => __$$_DeclareTransactionResponseResultCopyWithImpl< - _$_DeclareTransactionResponseResult>(this, _$identity); + _$$DeclareTransactionResponseResultImplCopyWith< + _$DeclareTransactionResponseResultImpl> + get copyWith => __$$DeclareTransactionResponseResultImplCopyWithImpl< + _$DeclareTransactionResponseResultImpl>(this, _$identity); @override Map toJson() { - return _$$_DeclareTransactionResponseResultToJson( + return _$$DeclareTransactionResponseResultImplToJson( this, ); } @@ -1343,10 +1350,11 @@ abstract class _DeclareTransactionResponseResult const factory _DeclareTransactionResponseResult( {required final Felt classHash, required final Felt transactionHash}) = - _$_DeclareTransactionResponseResult; + _$DeclareTransactionResponseResultImpl; factory _DeclareTransactionResponseResult.fromJson( - Map json) = _$_DeclareTransactionResponseResult.fromJson; + Map json) = + _$DeclareTransactionResponseResultImpl.fromJson; @override Felt get classHash; @@ -1354,7 +1362,7 @@ abstract class _DeclareTransactionResponseResult Felt get transactionHash; @override @JsonKey(ignore: true) - _$$_DeclareTransactionResponseResultCopyWith< - _$_DeclareTransactionResponseResult> + _$$DeclareTransactionResponseResultImplCopyWith< + _$DeclareTransactionResponseResultImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/declare_transaction.g.dart b/packages/starknet_provider/lib/src/model/declare_transaction.g.dart index 5efeb2b7..4374baa3 100644 --- a/packages/starknet_provider/lib/src/model/declare_transaction.g.dart +++ b/packages/starknet_provider/lib/src/model/declare_transaction.g.dart @@ -6,22 +6,22 @@ part of 'declare_transaction.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_DeclareTransactionRequest _$$_DeclareTransactionRequestFromJson( +_$DeclareTransactionRequestImpl _$$DeclareTransactionRequestImplFromJson( Map json) => - _$_DeclareTransactionRequest( + _$DeclareTransactionRequestImpl( declareTransaction: DeclareTransaction.fromJson( json['declare_transaction'] as Map), ); -Map _$$_DeclareTransactionRequestToJson( - _$_DeclareTransactionRequest instance) => +Map _$$DeclareTransactionRequestImplToJson( + _$DeclareTransactionRequestImpl instance) => { 'declare_transaction': instance.declareTransaction.toJson(), }; -_$_DeclareTransactionV1 _$$_DeclareTransactionV1FromJson( +_$DeclareTransactionV1Impl _$$DeclareTransactionV1ImplFromJson( Map json) => - _$_DeclareTransactionV1( + _$DeclareTransactionV1Impl( type: json['type'] as String? ?? 'DECLARE', version: json['version'] as String? ?? '0x1', max_fee: Felt.fromJson(json['max_fee'] as String), @@ -34,8 +34,8 @@ _$_DeclareTransactionV1 _$$_DeclareTransactionV1FromJson( json['contract_class'] as Map), ); -Map _$$_DeclareTransactionV1ToJson( - _$_DeclareTransactionV1 instance) => +Map _$$DeclareTransactionV1ImplToJson( + _$DeclareTransactionV1Impl instance) => { 'type': instance.type, 'version': instance.version, @@ -46,9 +46,9 @@ Map _$$_DeclareTransactionV1ToJson( 'contract_class': instance.contractClass.toJson(), }; -_$_DeclareTransactionV2 _$$_DeclareTransactionV2FromJson( +_$DeclareTransactionV2Impl _$$DeclareTransactionV2ImplFromJson( Map json) => - _$_DeclareTransactionV2( + _$DeclareTransactionV2Impl( type: json['type'] as String? ?? 'DECLARE', version: json['version'] as String? ?? '0x2', max_fee: Felt.fromJson(json['max_fee'] as String), @@ -62,8 +62,8 @@ _$_DeclareTransactionV2 _$$_DeclareTransactionV2FromJson( compiledClassHash: Felt.fromJson(json['compiled_class_hash'] as String), ); -Map _$$_DeclareTransactionV2ToJson( - _$_DeclareTransactionV2 instance) => +Map _$$DeclareTransactionV2ImplToJson( + _$DeclareTransactionV2Impl instance) => { 'type': instance.type, 'version': instance.version, @@ -75,44 +75,45 @@ Map _$$_DeclareTransactionV2ToJson( 'compiled_class_hash': instance.compiledClassHash.toJson(), }; -_$DeclareTransactionResult _$$DeclareTransactionResultFromJson( +_$DeclareTransactionResultImpl _$$DeclareTransactionResultImplFromJson( Map json) => - _$DeclareTransactionResult( + _$DeclareTransactionResultImpl( result: DeclareTransactionResponseResult.fromJson( json['result'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$DeclareTransactionResultToJson( - _$DeclareTransactionResult instance) => +Map _$$DeclareTransactionResultImplToJson( + _$DeclareTransactionResultImpl instance) => { 'result': instance.result.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$DeclareTransactionError _$$DeclareTransactionErrorFromJson( +_$DeclareTransactionErrorImpl _$$DeclareTransactionErrorImplFromJson( Map json) => - _$DeclareTransactionError( + _$DeclareTransactionErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$DeclareTransactionErrorToJson( - _$DeclareTransactionError instance) => +Map _$$DeclareTransactionErrorImplToJson( + _$DeclareTransactionErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$_DeclareTransactionResponseResult - _$$_DeclareTransactionResponseResultFromJson(Map json) => - _$_DeclareTransactionResponseResult( +_$DeclareTransactionResponseResultImpl + _$$DeclareTransactionResponseResultImplFromJson( + Map json) => + _$DeclareTransactionResponseResultImpl( classHash: Felt.fromJson(json['class_hash'] as String), transactionHash: Felt.fromJson(json['transaction_hash'] as String), ); -Map _$$_DeclareTransactionResponseResultToJson( - _$_DeclareTransactionResponseResult instance) => +Map _$$DeclareTransactionResponseResultImplToJson( + _$DeclareTransactionResponseResultImpl instance) => { 'class_hash': instance.classHash.toJson(), 'transaction_hash': instance.transactionHash.toJson(), diff --git a/packages/starknet_provider/lib/src/model/declared_contract_item.freezed.dart b/packages/starknet_provider/lib/src/model/declared_contract_item.freezed.dart index 12653c93..591536f1 100644 --- a/packages/starknet_provider/lib/src/model/declared_contract_item.freezed.dart +++ b/packages/starknet_provider/lib/src/model/declared_contract_item.freezed.dart @@ -12,7 +12,7 @@ part of 'declared_contract_item.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); DeclaredContractItem _$DeclaredContractItemFromJson(Map json) { return _DeclaredContractItem.fromJson(json); @@ -63,22 +63,22 @@ class _$DeclaredContractItemCopyWithImpl<$Res, } /// @nodoc -abstract class _$$_DeclaredContractItemCopyWith<$Res> +abstract class _$$DeclaredContractItemImplCopyWith<$Res> implements $DeclaredContractItemCopyWith<$Res> { - factory _$$_DeclaredContractItemCopyWith(_$_DeclaredContractItem value, - $Res Function(_$_DeclaredContractItem) then) = - __$$_DeclaredContractItemCopyWithImpl<$Res>; + factory _$$DeclaredContractItemImplCopyWith(_$DeclaredContractItemImpl value, + $Res Function(_$DeclaredContractItemImpl) then) = + __$$DeclaredContractItemImplCopyWithImpl<$Res>; @override @useResult $Res call({Felt classHash}); } /// @nodoc -class __$$_DeclaredContractItemCopyWithImpl<$Res> - extends _$DeclaredContractItemCopyWithImpl<$Res, _$_DeclaredContractItem> - implements _$$_DeclaredContractItemCopyWith<$Res> { - __$$_DeclaredContractItemCopyWithImpl(_$_DeclaredContractItem _value, - $Res Function(_$_DeclaredContractItem) _then) +class __$$DeclaredContractItemImplCopyWithImpl<$Res> + extends _$DeclaredContractItemCopyWithImpl<$Res, _$DeclaredContractItemImpl> + implements _$$DeclaredContractItemImplCopyWith<$Res> { + __$$DeclaredContractItemImplCopyWithImpl(_$DeclaredContractItemImpl _value, + $Res Function(_$DeclaredContractItemImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -86,7 +86,7 @@ class __$$_DeclaredContractItemCopyWithImpl<$Res> $Res call({ Object? classHash = null, }) { - return _then(_$_DeclaredContractItem( + return _then(_$DeclaredContractItemImpl( classHash: null == classHash ? _value.classHash : classHash // ignore: cast_nullable_to_non_nullable @@ -97,11 +97,11 @@ class __$$_DeclaredContractItemCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_DeclaredContractItem implements _DeclaredContractItem { - const _$_DeclaredContractItem({required this.classHash}); +class _$DeclaredContractItemImpl implements _DeclaredContractItem { + const _$DeclaredContractItemImpl({required this.classHash}); - factory _$_DeclaredContractItem.fromJson(Map json) => - _$$_DeclaredContractItemFromJson(json); + factory _$DeclaredContractItemImpl.fromJson(Map json) => + _$$DeclaredContractItemImplFromJson(json); @override final Felt classHash; @@ -112,10 +112,10 @@ class _$_DeclaredContractItem implements _DeclaredContractItem { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_DeclaredContractItem && + other is _$DeclaredContractItemImpl && (identical(other.classHash, classHash) || other.classHash == classHash)); } @@ -127,13 +127,14 @@ class _$_DeclaredContractItem implements _DeclaredContractItem { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_DeclaredContractItemCopyWith<_$_DeclaredContractItem> get copyWith => - __$$_DeclaredContractItemCopyWithImpl<_$_DeclaredContractItem>( - this, _$identity); + _$$DeclaredContractItemImplCopyWith<_$DeclaredContractItemImpl> + get copyWith => + __$$DeclaredContractItemImplCopyWithImpl<_$DeclaredContractItemImpl>( + this, _$identity); @override Map toJson() { - return _$$_DeclaredContractItemToJson( + return _$$DeclaredContractItemImplToJson( this, ); } @@ -141,15 +142,15 @@ class _$_DeclaredContractItem implements _DeclaredContractItem { abstract class _DeclaredContractItem implements DeclaredContractItem { const factory _DeclaredContractItem({required final Felt classHash}) = - _$_DeclaredContractItem; + _$DeclaredContractItemImpl; factory _DeclaredContractItem.fromJson(Map json) = - _$_DeclaredContractItem.fromJson; + _$DeclaredContractItemImpl.fromJson; @override Felt get classHash; @override @JsonKey(ignore: true) - _$$_DeclaredContractItemCopyWith<_$_DeclaredContractItem> get copyWith => - throw _privateConstructorUsedError; + _$$DeclaredContractItemImplCopyWith<_$DeclaredContractItemImpl> + get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/declared_contract_item.g.dart b/packages/starknet_provider/lib/src/model/declared_contract_item.g.dart index 2bf57dc4..a08e29d8 100644 --- a/packages/starknet_provider/lib/src/model/declared_contract_item.g.dart +++ b/packages/starknet_provider/lib/src/model/declared_contract_item.g.dart @@ -6,14 +6,14 @@ part of 'declared_contract_item.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_DeclaredContractItem _$$_DeclaredContractItemFromJson( +_$DeclaredContractItemImpl _$$DeclaredContractItemImplFromJson( Map json) => - _$_DeclaredContractItem( + _$DeclaredContractItemImpl( classHash: Felt.fromJson(json['class_hash'] as String), ); -Map _$$_DeclaredContractItemToJson( - _$_DeclaredContractItem instance) => +Map _$$DeclaredContractItemImplToJson( + _$DeclaredContractItemImpl instance) => { 'class_hash': instance.classHash.toJson(), }; diff --git a/packages/starknet_provider/lib/src/model/deploy_account_transaction.dart b/packages/starknet_provider/lib/src/model/deploy_account_transaction.dart index 0a04ff8f..6e759a5e 100644 --- a/packages/starknet_provider/lib/src/model/deploy_account_transaction.dart +++ b/packages/starknet_provider/lib/src/model/deploy_account_transaction.dart @@ -1,3 +1,5 @@ +// ignore_for_file: invalid_annotation_target + import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:starknet/starknet.dart'; import 'package:starknet_provider/starknet_provider.dart'; diff --git a/packages/starknet_provider/lib/src/model/deploy_account_transaction.freezed.dart b/packages/starknet_provider/lib/src/model/deploy_account_transaction.freezed.dart index 014edaed..c9d4adeb 100644 --- a/packages/starknet_provider/lib/src/model/deploy_account_transaction.freezed.dart +++ b/packages/starknet_provider/lib/src/model/deploy_account_transaction.freezed.dart @@ -12,7 +12,7 @@ part of 'deploy_account_transaction.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); DeployAccountTransactionV1 _$DeployAccountTransactionV1FromJson( Map json) { @@ -116,12 +116,12 @@ class _$DeployAccountTransactionV1CopyWithImpl<$Res, } /// @nodoc -abstract class _$$_DeployAccountTransactionV1CopyWith<$Res> +abstract class _$$DeployAccountTransactionV1ImplCopyWith<$Res> implements $DeployAccountTransactionV1CopyWith<$Res> { - factory _$$_DeployAccountTransactionV1CopyWith( - _$_DeployAccountTransactionV1 value, - $Res Function(_$_DeployAccountTransactionV1) then) = - __$$_DeployAccountTransactionV1CopyWithImpl<$Res>; + factory _$$DeployAccountTransactionV1ImplCopyWith( + _$DeployAccountTransactionV1Impl value, + $Res Function(_$DeployAccountTransactionV1Impl) then) = + __$$DeployAccountTransactionV1ImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -136,13 +136,13 @@ abstract class _$$_DeployAccountTransactionV1CopyWith<$Res> } /// @nodoc -class __$$_DeployAccountTransactionV1CopyWithImpl<$Res> +class __$$DeployAccountTransactionV1ImplCopyWithImpl<$Res> extends _$DeployAccountTransactionV1CopyWithImpl<$Res, - _$_DeployAccountTransactionV1> - implements _$$_DeployAccountTransactionV1CopyWith<$Res> { - __$$_DeployAccountTransactionV1CopyWithImpl( - _$_DeployAccountTransactionV1 _value, - $Res Function(_$_DeployAccountTransactionV1) _then) + _$DeployAccountTransactionV1Impl> + implements _$$DeployAccountTransactionV1ImplCopyWith<$Res> { + __$$DeployAccountTransactionV1ImplCopyWithImpl( + _$DeployAccountTransactionV1Impl _value, + $Res Function(_$DeployAccountTransactionV1Impl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -157,7 +157,7 @@ class __$$_DeployAccountTransactionV1CopyWithImpl<$Res> Object? version = null, Object? type = null, }) { - return _then(_$_DeployAccountTransactionV1( + return _then(_$DeployAccountTransactionV1Impl( signature: null == signature ? _value._signature : signature // ignore: cast_nullable_to_non_nullable @@ -196,8 +196,8 @@ class __$$_DeployAccountTransactionV1CopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_DeployAccountTransactionV1 implements _DeployAccountTransactionV1 { - const _$_DeployAccountTransactionV1( +class _$DeployAccountTransactionV1Impl implements _DeployAccountTransactionV1 { + const _$DeployAccountTransactionV1Impl( {required final List signature, @JsonKey(toJson: maxFeeToJson) required this.maxFee, required this.nonce, @@ -209,8 +209,9 @@ class _$_DeployAccountTransactionV1 implements _DeployAccountTransactionV1 { : _signature = signature, _constructorCalldata = constructorCalldata; - factory _$_DeployAccountTransactionV1.fromJson(Map json) => - _$$_DeployAccountTransactionV1FromJson(json); + factory _$DeployAccountTransactionV1Impl.fromJson( + Map json) => + _$$DeployAccountTransactionV1ImplFromJson(json); final List _signature; @override @@ -251,10 +252,10 @@ class _$_DeployAccountTransactionV1 implements _DeployAccountTransactionV1 { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_DeployAccountTransactionV1 && + other is _$DeployAccountTransactionV1Impl && const DeepCollectionEquality() .equals(other._signature, _signature) && (identical(other.maxFee, maxFee) || other.maxFee == maxFee) && @@ -285,13 +286,13 @@ class _$_DeployAccountTransactionV1 implements _DeployAccountTransactionV1 { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_DeployAccountTransactionV1CopyWith<_$_DeployAccountTransactionV1> - get copyWith => __$$_DeployAccountTransactionV1CopyWithImpl< - _$_DeployAccountTransactionV1>(this, _$identity); + _$$DeployAccountTransactionV1ImplCopyWith<_$DeployAccountTransactionV1Impl> + get copyWith => __$$DeployAccountTransactionV1ImplCopyWithImpl< + _$DeployAccountTransactionV1Impl>(this, _$identity); @override Map toJson() { - return _$$_DeployAccountTransactionV1ToJson( + return _$$DeployAccountTransactionV1ImplToJson( this, ); } @@ -307,10 +308,10 @@ abstract class _DeployAccountTransactionV1 required final List constructorCalldata, required final Felt classHash, final String version, - final String type}) = _$_DeployAccountTransactionV1; + final String type}) = _$DeployAccountTransactionV1Impl; factory _DeployAccountTransactionV1.fromJson(Map json) = - _$_DeployAccountTransactionV1.fromJson; + _$DeployAccountTransactionV1Impl.fromJson; @override List get signature; @@ -331,7 +332,7 @@ abstract class _DeployAccountTransactionV1 String get type; @override @JsonKey(ignore: true) - _$$_DeployAccountTransactionV1CopyWith<_$_DeployAccountTransactionV1> + _$$DeployAccountTransactionV1ImplCopyWith<_$DeployAccountTransactionV1Impl> get copyWith => throw _privateConstructorUsedError; } @@ -388,25 +389,25 @@ class _$DeployAccountTransactionRequestCopyWithImpl<$Res, } /// @nodoc -abstract class _$$_DeployAccountTransactionRequestCopyWith<$Res> +abstract class _$$DeployAccountTransactionRequestImplCopyWith<$Res> implements $DeployAccountTransactionRequestCopyWith<$Res> { - factory _$$_DeployAccountTransactionRequestCopyWith( - _$_DeployAccountTransactionRequest value, - $Res Function(_$_DeployAccountTransactionRequest) then) = - __$$_DeployAccountTransactionRequestCopyWithImpl<$Res>; + factory _$$DeployAccountTransactionRequestImplCopyWith( + _$DeployAccountTransactionRequestImpl value, + $Res Function(_$DeployAccountTransactionRequestImpl) then) = + __$$DeployAccountTransactionRequestImplCopyWithImpl<$Res>; @override @useResult $Res call({DeployAccountTransaction deployAccountTransaction}); } /// @nodoc -class __$$_DeployAccountTransactionRequestCopyWithImpl<$Res> +class __$$DeployAccountTransactionRequestImplCopyWithImpl<$Res> extends _$DeployAccountTransactionRequestCopyWithImpl<$Res, - _$_DeployAccountTransactionRequest> - implements _$$_DeployAccountTransactionRequestCopyWith<$Res> { - __$$_DeployAccountTransactionRequestCopyWithImpl( - _$_DeployAccountTransactionRequest _value, - $Res Function(_$_DeployAccountTransactionRequest) _then) + _$DeployAccountTransactionRequestImpl> + implements _$$DeployAccountTransactionRequestImplCopyWith<$Res> { + __$$DeployAccountTransactionRequestImplCopyWithImpl( + _$DeployAccountTransactionRequestImpl _value, + $Res Function(_$DeployAccountTransactionRequestImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -414,7 +415,7 @@ class __$$_DeployAccountTransactionRequestCopyWithImpl<$Res> $Res call({ Object? deployAccountTransaction = null, }) { - return _then(_$_DeployAccountTransactionRequest( + return _then(_$DeployAccountTransactionRequestImpl( deployAccountTransaction: null == deployAccountTransaction ? _value.deployAccountTransaction : deployAccountTransaction // ignore: cast_nullable_to_non_nullable @@ -425,14 +426,14 @@ class __$$_DeployAccountTransactionRequestCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_DeployAccountTransactionRequest +class _$DeployAccountTransactionRequestImpl implements _DeployAccountTransactionRequest { - const _$_DeployAccountTransactionRequest( + const _$DeployAccountTransactionRequestImpl( {required this.deployAccountTransaction}); - factory _$_DeployAccountTransactionRequest.fromJson( + factory _$DeployAccountTransactionRequestImpl.fromJson( Map json) => - _$$_DeployAccountTransactionRequestFromJson(json); + _$$DeployAccountTransactionRequestImplFromJson(json); @override final DeployAccountTransaction deployAccountTransaction; @@ -443,10 +444,10 @@ class _$_DeployAccountTransactionRequest } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_DeployAccountTransactionRequest && + other is _$DeployAccountTransactionRequestImpl && (identical( other.deployAccountTransaction, deployAccountTransaction) || other.deployAccountTransaction == deployAccountTransaction)); @@ -459,14 +460,14 @@ class _$_DeployAccountTransactionRequest @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_DeployAccountTransactionRequestCopyWith< - _$_DeployAccountTransactionRequest> - get copyWith => __$$_DeployAccountTransactionRequestCopyWithImpl< - _$_DeployAccountTransactionRequest>(this, _$identity); + _$$DeployAccountTransactionRequestImplCopyWith< + _$DeployAccountTransactionRequestImpl> + get copyWith => __$$DeployAccountTransactionRequestImplCopyWithImpl< + _$DeployAccountTransactionRequestImpl>(this, _$identity); @override Map toJson() { - return _$$_DeployAccountTransactionRequestToJson( + return _$$DeployAccountTransactionRequestImplToJson( this, ); } @@ -476,17 +477,17 @@ abstract class _DeployAccountTransactionRequest implements DeployAccountTransactionRequest { const factory _DeployAccountTransactionRequest( {required final DeployAccountTransaction deployAccountTransaction}) = - _$_DeployAccountTransactionRequest; + _$DeployAccountTransactionRequestImpl; factory _DeployAccountTransactionRequest.fromJson(Map json) = - _$_DeployAccountTransactionRequest.fromJson; + _$DeployAccountTransactionRequestImpl.fromJson; @override DeployAccountTransaction get deployAccountTransaction; @override @JsonKey(ignore: true) - _$$_DeployAccountTransactionRequestCopyWith< - _$_DeployAccountTransactionRequest> + _$$DeployAccountTransactionRequestImplCopyWith< + _$DeployAccountTransactionRequestImpl> get copyWith => throw _privateConstructorUsedError; } @@ -573,11 +574,11 @@ class _$DeployAccountTransactionResponseCopyWithImpl<$Res, } /// @nodoc -abstract class _$$DeployAccountTransactionResultCopyWith<$Res> { - factory _$$DeployAccountTransactionResultCopyWith( - _$DeployAccountTransactionResult value, - $Res Function(_$DeployAccountTransactionResult) then) = - __$$DeployAccountTransactionResultCopyWithImpl<$Res>; +abstract class _$$DeployAccountTransactionResultImplCopyWith<$Res> { + factory _$$DeployAccountTransactionResultImplCopyWith( + _$DeployAccountTransactionResultImpl value, + $Res Function(_$DeployAccountTransactionResultImpl) then) = + __$$DeployAccountTransactionResultImplCopyWithImpl<$Res>; @useResult $Res call({DeployAccountTransactionResponseResult result}); @@ -585,13 +586,13 @@ abstract class _$$DeployAccountTransactionResultCopyWith<$Res> { } /// @nodoc -class __$$DeployAccountTransactionResultCopyWithImpl<$Res> +class __$$DeployAccountTransactionResultImplCopyWithImpl<$Res> extends _$DeployAccountTransactionResponseCopyWithImpl<$Res, - _$DeployAccountTransactionResult> - implements _$$DeployAccountTransactionResultCopyWith<$Res> { - __$$DeployAccountTransactionResultCopyWithImpl( - _$DeployAccountTransactionResult _value, - $Res Function(_$DeployAccountTransactionResult) _then) + _$DeployAccountTransactionResultImpl> + implements _$$DeployAccountTransactionResultImplCopyWith<$Res> { + __$$DeployAccountTransactionResultImplCopyWithImpl( + _$DeployAccountTransactionResultImpl _value, + $Res Function(_$DeployAccountTransactionResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -599,7 +600,7 @@ class __$$DeployAccountTransactionResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$DeployAccountTransactionResult( + return _then(_$DeployAccountTransactionResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -619,15 +620,15 @@ class __$$DeployAccountTransactionResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$DeployAccountTransactionResult +class _$DeployAccountTransactionResultImpl implements DeployAccountTransactionResult { - const _$DeployAccountTransactionResult( + const _$DeployAccountTransactionResultImpl( {required this.result, final String? $type}) : $type = $type ?? 'result'; - factory _$DeployAccountTransactionResult.fromJson( + factory _$DeployAccountTransactionResultImpl.fromJson( Map json) => - _$$DeployAccountTransactionResultFromJson(json); + _$$DeployAccountTransactionResultImplFromJson(json); @override final DeployAccountTransactionResponseResult result; @@ -641,10 +642,10 @@ class _$DeployAccountTransactionResult } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$DeployAccountTransactionResult && + other is _$DeployAccountTransactionResultImpl && (identical(other.result, result) || other.result == result)); } @@ -655,9 +656,10 @@ class _$DeployAccountTransactionResult @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$DeployAccountTransactionResultCopyWith<_$DeployAccountTransactionResult> - get copyWith => __$$DeployAccountTransactionResultCopyWithImpl< - _$DeployAccountTransactionResult>(this, _$identity); + _$$DeployAccountTransactionResultImplCopyWith< + _$DeployAccountTransactionResultImpl> + get copyWith => __$$DeployAccountTransactionResultImplCopyWithImpl< + _$DeployAccountTransactionResultImpl>(this, _$identity); @override @optionalTypeArgs @@ -724,7 +726,7 @@ class _$DeployAccountTransactionResult @override Map toJson() { - return _$$DeployAccountTransactionResultToJson( + return _$$DeployAccountTransactionResultImplToJson( this, ); } @@ -734,23 +736,24 @@ abstract class DeployAccountTransactionResult implements DeployAccountTransactionResponse { const factory DeployAccountTransactionResult( {required final DeployAccountTransactionResponseResult result}) = - _$DeployAccountTransactionResult; + _$DeployAccountTransactionResultImpl; factory DeployAccountTransactionResult.fromJson(Map json) = - _$DeployAccountTransactionResult.fromJson; + _$DeployAccountTransactionResultImpl.fromJson; DeployAccountTransactionResponseResult get result; @JsonKey(ignore: true) - _$$DeployAccountTransactionResultCopyWith<_$DeployAccountTransactionResult> + _$$DeployAccountTransactionResultImplCopyWith< + _$DeployAccountTransactionResultImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$DeployAccountTransactionErrorCopyWith<$Res> { - factory _$$DeployAccountTransactionErrorCopyWith( - _$DeployAccountTransactionError value, - $Res Function(_$DeployAccountTransactionError) then) = - __$$DeployAccountTransactionErrorCopyWithImpl<$Res>; +abstract class _$$DeployAccountTransactionErrorImplCopyWith<$Res> { + factory _$$DeployAccountTransactionErrorImplCopyWith( + _$DeployAccountTransactionErrorImpl value, + $Res Function(_$DeployAccountTransactionErrorImpl) then) = + __$$DeployAccountTransactionErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -758,13 +761,13 @@ abstract class _$$DeployAccountTransactionErrorCopyWith<$Res> { } /// @nodoc -class __$$DeployAccountTransactionErrorCopyWithImpl<$Res> +class __$$DeployAccountTransactionErrorImplCopyWithImpl<$Res> extends _$DeployAccountTransactionResponseCopyWithImpl<$Res, - _$DeployAccountTransactionError> - implements _$$DeployAccountTransactionErrorCopyWith<$Res> { - __$$DeployAccountTransactionErrorCopyWithImpl( - _$DeployAccountTransactionError _value, - $Res Function(_$DeployAccountTransactionError) _then) + _$DeployAccountTransactionErrorImpl> + implements _$$DeployAccountTransactionErrorImplCopyWith<$Res> { + __$$DeployAccountTransactionErrorImplCopyWithImpl( + _$DeployAccountTransactionErrorImpl _value, + $Res Function(_$DeployAccountTransactionErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -772,7 +775,7 @@ class __$$DeployAccountTransactionErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$DeployAccountTransactionError( + return _then(_$DeployAccountTransactionErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -791,13 +794,15 @@ class __$$DeployAccountTransactionErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$DeployAccountTransactionError implements DeployAccountTransactionError { - const _$DeployAccountTransactionError( +class _$DeployAccountTransactionErrorImpl + implements DeployAccountTransactionError { + const _$DeployAccountTransactionErrorImpl( {required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$DeployAccountTransactionError.fromJson(Map json) => - _$$DeployAccountTransactionErrorFromJson(json); + factory _$DeployAccountTransactionErrorImpl.fromJson( + Map json) => + _$$DeployAccountTransactionErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -811,10 +816,10 @@ class _$DeployAccountTransactionError implements DeployAccountTransactionError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$DeployAccountTransactionError && + other is _$DeployAccountTransactionErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -825,9 +830,10 @@ class _$DeployAccountTransactionError implements DeployAccountTransactionError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$DeployAccountTransactionErrorCopyWith<_$DeployAccountTransactionError> - get copyWith => __$$DeployAccountTransactionErrorCopyWithImpl< - _$DeployAccountTransactionError>(this, _$identity); + _$$DeployAccountTransactionErrorImplCopyWith< + _$DeployAccountTransactionErrorImpl> + get copyWith => __$$DeployAccountTransactionErrorImplCopyWithImpl< + _$DeployAccountTransactionErrorImpl>(this, _$identity); @override @optionalTypeArgs @@ -894,7 +900,7 @@ class _$DeployAccountTransactionError implements DeployAccountTransactionError { @override Map toJson() { - return _$$DeployAccountTransactionErrorToJson( + return _$$DeployAccountTransactionErrorImplToJson( this, ); } @@ -903,14 +909,16 @@ class _$DeployAccountTransactionError implements DeployAccountTransactionError { abstract class DeployAccountTransactionError implements DeployAccountTransactionResponse { const factory DeployAccountTransactionError( - {required final JsonRpcApiError error}) = _$DeployAccountTransactionError; + {required final JsonRpcApiError error}) = + _$DeployAccountTransactionErrorImpl; factory DeployAccountTransactionError.fromJson(Map json) = - _$DeployAccountTransactionError.fromJson; + _$DeployAccountTransactionErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$DeployAccountTransactionErrorCopyWith<_$DeployAccountTransactionError> + _$$DeployAccountTransactionErrorImplCopyWith< + _$DeployAccountTransactionErrorImpl> get copyWith => throw _privateConstructorUsedError; } @@ -974,25 +982,25 @@ class _$DeployAccountTransactionResponseResultCopyWithImpl<$Res, } /// @nodoc -abstract class _$$_DeployAccountTransactionResponseResultCopyWith<$Res> +abstract class _$$DeployAccountTransactionResponseResultImplCopyWith<$Res> implements $DeployAccountTransactionResponseResultCopyWith<$Res> { - factory _$$_DeployAccountTransactionResponseResultCopyWith( - _$_DeployAccountTransactionResponseResult value, - $Res Function(_$_DeployAccountTransactionResponseResult) then) = - __$$_DeployAccountTransactionResponseResultCopyWithImpl<$Res>; + factory _$$DeployAccountTransactionResponseResultImplCopyWith( + _$DeployAccountTransactionResponseResultImpl value, + $Res Function(_$DeployAccountTransactionResponseResultImpl) then) = + __$$DeployAccountTransactionResponseResultImplCopyWithImpl<$Res>; @override @useResult $Res call({Felt transactionHash, Felt contractAddress}); } /// @nodoc -class __$$_DeployAccountTransactionResponseResultCopyWithImpl<$Res> +class __$$DeployAccountTransactionResponseResultImplCopyWithImpl<$Res> extends _$DeployAccountTransactionResponseResultCopyWithImpl<$Res, - _$_DeployAccountTransactionResponseResult> - implements _$$_DeployAccountTransactionResponseResultCopyWith<$Res> { - __$$_DeployAccountTransactionResponseResultCopyWithImpl( - _$_DeployAccountTransactionResponseResult _value, - $Res Function(_$_DeployAccountTransactionResponseResult) _then) + _$DeployAccountTransactionResponseResultImpl> + implements _$$DeployAccountTransactionResponseResultImplCopyWith<$Res> { + __$$DeployAccountTransactionResponseResultImplCopyWithImpl( + _$DeployAccountTransactionResponseResultImpl _value, + $Res Function(_$DeployAccountTransactionResponseResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -1001,7 +1009,7 @@ class __$$_DeployAccountTransactionResponseResultCopyWithImpl<$Res> Object? transactionHash = null, Object? contractAddress = null, }) { - return _then(_$_DeployAccountTransactionResponseResult( + return _then(_$DeployAccountTransactionResponseResultImpl( transactionHash: null == transactionHash ? _value.transactionHash : transactionHash // ignore: cast_nullable_to_non_nullable @@ -1016,14 +1024,14 @@ class __$$_DeployAccountTransactionResponseResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_DeployAccountTransactionResponseResult +class _$DeployAccountTransactionResponseResultImpl implements _DeployAccountTransactionResponseResult { - const _$_DeployAccountTransactionResponseResult( + const _$DeployAccountTransactionResponseResultImpl( {required this.transactionHash, required this.contractAddress}); - factory _$_DeployAccountTransactionResponseResult.fromJson( + factory _$DeployAccountTransactionResponseResultImpl.fromJson( Map json) => - _$$_DeployAccountTransactionResponseResultFromJson(json); + _$$DeployAccountTransactionResponseResultImplFromJson(json); @override final Felt transactionHash; @@ -1036,10 +1044,10 @@ class _$_DeployAccountTransactionResponseResult } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_DeployAccountTransactionResponseResult && + other is _$DeployAccountTransactionResponseResultImpl && (identical(other.transactionHash, transactionHash) || other.transactionHash == transactionHash) && (identical(other.contractAddress, contractAddress) || @@ -1054,14 +1062,15 @@ class _$_DeployAccountTransactionResponseResult @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_DeployAccountTransactionResponseResultCopyWith< - _$_DeployAccountTransactionResponseResult> - get copyWith => __$$_DeployAccountTransactionResponseResultCopyWithImpl< - _$_DeployAccountTransactionResponseResult>(this, _$identity); + _$$DeployAccountTransactionResponseResultImplCopyWith< + _$DeployAccountTransactionResponseResultImpl> + get copyWith => + __$$DeployAccountTransactionResponseResultImplCopyWithImpl< + _$DeployAccountTransactionResponseResultImpl>(this, _$identity); @override Map toJson() { - return _$$_DeployAccountTransactionResponseResultToJson( + return _$$DeployAccountTransactionResponseResultImplToJson( this, ); } @@ -1072,11 +1081,11 @@ abstract class _DeployAccountTransactionResponseResult const factory _DeployAccountTransactionResponseResult( {required final Felt transactionHash, required final Felt contractAddress}) = - _$_DeployAccountTransactionResponseResult; + _$DeployAccountTransactionResponseResultImpl; factory _DeployAccountTransactionResponseResult.fromJson( Map json) = - _$_DeployAccountTransactionResponseResult.fromJson; + _$DeployAccountTransactionResponseResultImpl.fromJson; @override Felt get transactionHash; @@ -1084,7 +1093,7 @@ abstract class _DeployAccountTransactionResponseResult Felt get contractAddress; @override @JsonKey(ignore: true) - _$$_DeployAccountTransactionResponseResultCopyWith< - _$_DeployAccountTransactionResponseResult> + _$$DeployAccountTransactionResponseResultImplCopyWith< + _$DeployAccountTransactionResponseResultImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/deploy_account_transaction.g.dart b/packages/starknet_provider/lib/src/model/deploy_account_transaction.g.dart index 7306aac9..c9a6bed9 100644 --- a/packages/starknet_provider/lib/src/model/deploy_account_transaction.g.dart +++ b/packages/starknet_provider/lib/src/model/deploy_account_transaction.g.dart @@ -6,9 +6,9 @@ part of 'deploy_account_transaction.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_DeployAccountTransactionV1 _$$_DeployAccountTransactionV1FromJson( +_$DeployAccountTransactionV1Impl _$$DeployAccountTransactionV1ImplFromJson( Map json) => - _$_DeployAccountTransactionV1( + _$DeployAccountTransactionV1Impl( signature: (json['signature'] as List) .map((e) => Felt.fromJson(e as String)) .toList(), @@ -24,8 +24,8 @@ _$_DeployAccountTransactionV1 _$$_DeployAccountTransactionV1FromJson( type: json['type'] as String? ?? 'DEPLOY_ACCOUNT', ); -Map _$$_DeployAccountTransactionV1ToJson( - _$_DeployAccountTransactionV1 instance) => +Map _$$DeployAccountTransactionV1ImplToJson( + _$DeployAccountTransactionV1Impl instance) => { 'signature': instance.signature.map((e) => e.toJson()).toList(), 'max_fee': maxFeeToJson(instance.maxFee), @@ -38,58 +38,59 @@ Map _$$_DeployAccountTransactionV1ToJson( 'type': instance.type, }; -_$_DeployAccountTransactionRequest _$$_DeployAccountTransactionRequestFromJson( - Map json) => - _$_DeployAccountTransactionRequest( - deployAccountTransaction: DeployAccountTransaction.fromJson( - json['deploy_account_transaction'] as Map), - ); +_$DeployAccountTransactionRequestImpl + _$$DeployAccountTransactionRequestImplFromJson(Map json) => + _$DeployAccountTransactionRequestImpl( + deployAccountTransaction: DeployAccountTransaction.fromJson( + json['deploy_account_transaction'] as Map), + ); -Map _$$_DeployAccountTransactionRequestToJson( - _$_DeployAccountTransactionRequest instance) => +Map _$$DeployAccountTransactionRequestImplToJson( + _$DeployAccountTransactionRequestImpl instance) => { 'deploy_account_transaction': instance.deployAccountTransaction.toJson(), }; -_$DeployAccountTransactionResult _$$DeployAccountTransactionResultFromJson( - Map json) => - _$DeployAccountTransactionResult( - result: DeployAccountTransactionResponseResult.fromJson( - json['result'] as Map), - $type: json['starkNetRuntimeTypeToRemove'] as String?, - ); +_$DeployAccountTransactionResultImpl + _$$DeployAccountTransactionResultImplFromJson(Map json) => + _$DeployAccountTransactionResultImpl( + result: DeployAccountTransactionResponseResult.fromJson( + json['result'] as Map), + $type: json['starkNetRuntimeTypeToRemove'] as String?, + ); -Map _$$DeployAccountTransactionResultToJson( - _$DeployAccountTransactionResult instance) => +Map _$$DeployAccountTransactionResultImplToJson( + _$DeployAccountTransactionResultImpl instance) => { 'result': instance.result.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$DeployAccountTransactionError _$$DeployAccountTransactionErrorFromJson( - Map json) => - _$DeployAccountTransactionError( - error: JsonRpcApiError.fromJson(json['error'] as Map), - $type: json['starkNetRuntimeTypeToRemove'] as String?, - ); +_$DeployAccountTransactionErrorImpl + _$$DeployAccountTransactionErrorImplFromJson(Map json) => + _$DeployAccountTransactionErrorImpl( + error: + JsonRpcApiError.fromJson(json['error'] as Map), + $type: json['starkNetRuntimeTypeToRemove'] as String?, + ); -Map _$$DeployAccountTransactionErrorToJson( - _$DeployAccountTransactionError instance) => +Map _$$DeployAccountTransactionErrorImplToJson( + _$DeployAccountTransactionErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$_DeployAccountTransactionResponseResult - _$$_DeployAccountTransactionResponseResultFromJson( +_$DeployAccountTransactionResponseResultImpl + _$$DeployAccountTransactionResponseResultImplFromJson( Map json) => - _$_DeployAccountTransactionResponseResult( + _$DeployAccountTransactionResponseResultImpl( transactionHash: Felt.fromJson(json['transaction_hash'] as String), contractAddress: Felt.fromJson(json['contract_address'] as String), ); -Map _$$_DeployAccountTransactionResponseResultToJson( - _$_DeployAccountTransactionResponseResult instance) => +Map _$$DeployAccountTransactionResponseResultImplToJson( + _$DeployAccountTransactionResponseResultImpl instance) => { 'transaction_hash': instance.transactionHash.toJson(), 'contract_address': instance.contractAddress.toJson(), diff --git a/packages/starknet_provider/lib/src/model/deployed_contract_item.freezed.dart b/packages/starknet_provider/lib/src/model/deployed_contract_item.freezed.dart index b728edf3..589a6987 100644 --- a/packages/starknet_provider/lib/src/model/deployed_contract_item.freezed.dart +++ b/packages/starknet_provider/lib/src/model/deployed_contract_item.freezed.dart @@ -12,7 +12,7 @@ part of 'deployed_contract_item.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); DeployedContractItem _$DeployedContractItemFromJson(Map json) { return _DeployedContractItem.fromJson(json); @@ -69,22 +69,22 @@ class _$DeployedContractItemCopyWithImpl<$Res, } /// @nodoc -abstract class _$$_DeployedContractItemCopyWith<$Res> +abstract class _$$DeployedContractItemImplCopyWith<$Res> implements $DeployedContractItemCopyWith<$Res> { - factory _$$_DeployedContractItemCopyWith(_$_DeployedContractItem value, - $Res Function(_$_DeployedContractItem) then) = - __$$_DeployedContractItemCopyWithImpl<$Res>; + factory _$$DeployedContractItemImplCopyWith(_$DeployedContractItemImpl value, + $Res Function(_$DeployedContractItemImpl) then) = + __$$DeployedContractItemImplCopyWithImpl<$Res>; @override @useResult $Res call({Felt address, Felt classHash}); } /// @nodoc -class __$$_DeployedContractItemCopyWithImpl<$Res> - extends _$DeployedContractItemCopyWithImpl<$Res, _$_DeployedContractItem> - implements _$$_DeployedContractItemCopyWith<$Res> { - __$$_DeployedContractItemCopyWithImpl(_$_DeployedContractItem _value, - $Res Function(_$_DeployedContractItem) _then) +class __$$DeployedContractItemImplCopyWithImpl<$Res> + extends _$DeployedContractItemCopyWithImpl<$Res, _$DeployedContractItemImpl> + implements _$$DeployedContractItemImplCopyWith<$Res> { + __$$DeployedContractItemImplCopyWithImpl(_$DeployedContractItemImpl _value, + $Res Function(_$DeployedContractItemImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -93,7 +93,7 @@ class __$$_DeployedContractItemCopyWithImpl<$Res> Object? address = null, Object? classHash = null, }) { - return _then(_$_DeployedContractItem( + return _then(_$DeployedContractItemImpl( address: null == address ? _value.address : address // ignore: cast_nullable_to_non_nullable @@ -108,12 +108,12 @@ class __$$_DeployedContractItemCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_DeployedContractItem implements _DeployedContractItem { - const _$_DeployedContractItem( +class _$DeployedContractItemImpl implements _DeployedContractItem { + const _$DeployedContractItemImpl( {required this.address, required this.classHash}); - factory _$_DeployedContractItem.fromJson(Map json) => - _$$_DeployedContractItemFromJson(json); + factory _$DeployedContractItemImpl.fromJson(Map json) => + _$$DeployedContractItemImplFromJson(json); @override final Felt address; @@ -126,10 +126,10 @@ class _$_DeployedContractItem implements _DeployedContractItem { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_DeployedContractItem && + other is _$DeployedContractItemImpl && (identical(other.address, address) || other.address == address) && (identical(other.classHash, classHash) || other.classHash == classHash)); @@ -142,13 +142,14 @@ class _$_DeployedContractItem implements _DeployedContractItem { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_DeployedContractItemCopyWith<_$_DeployedContractItem> get copyWith => - __$$_DeployedContractItemCopyWithImpl<_$_DeployedContractItem>( - this, _$identity); + _$$DeployedContractItemImplCopyWith<_$DeployedContractItemImpl> + get copyWith => + __$$DeployedContractItemImplCopyWithImpl<_$DeployedContractItemImpl>( + this, _$identity); @override Map toJson() { - return _$$_DeployedContractItemToJson( + return _$$DeployedContractItemImplToJson( this, ); } @@ -157,10 +158,10 @@ class _$_DeployedContractItem implements _DeployedContractItem { abstract class _DeployedContractItem implements DeployedContractItem { const factory _DeployedContractItem( {required final Felt address, - required final Felt classHash}) = _$_DeployedContractItem; + required final Felt classHash}) = _$DeployedContractItemImpl; factory _DeployedContractItem.fromJson(Map json) = - _$_DeployedContractItem.fromJson; + _$DeployedContractItemImpl.fromJson; @override Felt get address; @@ -168,6 +169,6 @@ abstract class _DeployedContractItem implements DeployedContractItem { Felt get classHash; @override @JsonKey(ignore: true) - _$$_DeployedContractItemCopyWith<_$_DeployedContractItem> get copyWith => - throw _privateConstructorUsedError; + _$$DeployedContractItemImplCopyWith<_$DeployedContractItemImpl> + get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/deployed_contract_item.g.dart b/packages/starknet_provider/lib/src/model/deployed_contract_item.g.dart index e09bb873..a79fa027 100644 --- a/packages/starknet_provider/lib/src/model/deployed_contract_item.g.dart +++ b/packages/starknet_provider/lib/src/model/deployed_contract_item.g.dart @@ -6,15 +6,15 @@ part of 'deployed_contract_item.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_DeployedContractItem _$$_DeployedContractItemFromJson( +_$DeployedContractItemImpl _$$DeployedContractItemImplFromJson( Map json) => - _$_DeployedContractItem( + _$DeployedContractItemImpl( address: Felt.fromJson(json['address'] as String), classHash: Felt.fromJson(json['class_hash'] as String), ); -Map _$$_DeployedContractItemToJson( - _$_DeployedContractItem instance) => +Map _$$DeployedContractItemImplToJson( + _$DeployedContractItemImpl instance) => { 'address': instance.address.toJson(), 'class_hash': instance.classHash.toJson(), diff --git a/packages/starknet_provider/lib/src/model/estimate_fee.dart b/packages/starknet_provider/lib/src/model/estimate_fee.dart index 9d7c4947..21603b33 100644 --- a/packages/starknet_provider/lib/src/model/estimate_fee.dart +++ b/packages/starknet_provider/lib/src/model/estimate_fee.dart @@ -1,3 +1,5 @@ +// ignore_for_file: invalid_annotation_target + import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:starknet/starknet.dart'; import 'package:starknet_provider/starknet_provider.dart'; diff --git a/packages/starknet_provider/lib/src/model/estimate_fee.freezed.dart b/packages/starknet_provider/lib/src/model/estimate_fee.freezed.dart index 9c590e7b..6074972a 100644 --- a/packages/starknet_provider/lib/src/model/estimate_fee.freezed.dart +++ b/packages/starknet_provider/lib/src/model/estimate_fee.freezed.dart @@ -12,7 +12,7 @@ part of 'estimate_fee.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); EstimateFee _$EstimateFeeFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -92,20 +92,20 @@ class _$EstimateFeeCopyWithImpl<$Res, $Val extends EstimateFee> } /// @nodoc -abstract class _$$EstimateFeeResultCopyWith<$Res> { - factory _$$EstimateFeeResultCopyWith( - _$EstimateFeeResult value, $Res Function(_$EstimateFeeResult) then) = - __$$EstimateFeeResultCopyWithImpl<$Res>; +abstract class _$$EstimateFeeResultImplCopyWith<$Res> { + factory _$$EstimateFeeResultImplCopyWith(_$EstimateFeeResultImpl value, + $Res Function(_$EstimateFeeResultImpl) then) = + __$$EstimateFeeResultImplCopyWithImpl<$Res>; @useResult $Res call({List result}); } /// @nodoc -class __$$EstimateFeeResultCopyWithImpl<$Res> - extends _$EstimateFeeCopyWithImpl<$Res, _$EstimateFeeResult> - implements _$$EstimateFeeResultCopyWith<$Res> { - __$$EstimateFeeResultCopyWithImpl( - _$EstimateFeeResult _value, $Res Function(_$EstimateFeeResult) _then) +class __$$EstimateFeeResultImplCopyWithImpl<$Res> + extends _$EstimateFeeCopyWithImpl<$Res, _$EstimateFeeResultImpl> + implements _$$EstimateFeeResultImplCopyWith<$Res> { + __$$EstimateFeeResultImplCopyWithImpl(_$EstimateFeeResultImpl _value, + $Res Function(_$EstimateFeeResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -113,7 +113,7 @@ class __$$EstimateFeeResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$EstimateFeeResult( + return _then(_$EstimateFeeResultImpl( result: null == result ? _value._result : result // ignore: cast_nullable_to_non_nullable @@ -124,14 +124,14 @@ class __$$EstimateFeeResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$EstimateFeeResult implements EstimateFeeResult { - const _$EstimateFeeResult( +class _$EstimateFeeResultImpl implements EstimateFeeResult { + const _$EstimateFeeResultImpl( {required final List result, final String? $type}) : _result = result, $type = $type ?? 'result'; - factory _$EstimateFeeResult.fromJson(Map json) => - _$$EstimateFeeResultFromJson(json); + factory _$EstimateFeeResultImpl.fromJson(Map json) => + _$$EstimateFeeResultImplFromJson(json); final List _result; @override @@ -150,10 +150,10 @@ class _$EstimateFeeResult implements EstimateFeeResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$EstimateFeeResult && + other is _$EstimateFeeResultImpl && const DeepCollectionEquality().equals(other._result, _result)); } @@ -165,8 +165,9 @@ class _$EstimateFeeResult implements EstimateFeeResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$EstimateFeeResultCopyWith<_$EstimateFeeResult> get copyWith => - __$$EstimateFeeResultCopyWithImpl<_$EstimateFeeResult>(this, _$identity); + _$$EstimateFeeResultImplCopyWith<_$EstimateFeeResultImpl> get copyWith => + __$$EstimateFeeResultImplCopyWithImpl<_$EstimateFeeResultImpl>( + this, _$identity); @override @optionalTypeArgs @@ -232,7 +233,7 @@ class _$EstimateFeeResult implements EstimateFeeResult { @override Map toJson() { - return _$$EstimateFeeResultToJson( + return _$$EstimateFeeResultImplToJson( this, ); } @@ -240,22 +241,22 @@ class _$EstimateFeeResult implements EstimateFeeResult { abstract class EstimateFeeResult implements EstimateFee { const factory EstimateFeeResult({required final List result}) = - _$EstimateFeeResult; + _$EstimateFeeResultImpl; factory EstimateFeeResult.fromJson(Map json) = - _$EstimateFeeResult.fromJson; + _$EstimateFeeResultImpl.fromJson; List get result; @JsonKey(ignore: true) - _$$EstimateFeeResultCopyWith<_$EstimateFeeResult> get copyWith => + _$$EstimateFeeResultImplCopyWith<_$EstimateFeeResultImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$EstimateFeeErrorCopyWith<$Res> { - factory _$$EstimateFeeErrorCopyWith( - _$EstimateFeeError value, $Res Function(_$EstimateFeeError) then) = - __$$EstimateFeeErrorCopyWithImpl<$Res>; +abstract class _$$EstimateFeeErrorImplCopyWith<$Res> { + factory _$$EstimateFeeErrorImplCopyWith(_$EstimateFeeErrorImpl value, + $Res Function(_$EstimateFeeErrorImpl) then) = + __$$EstimateFeeErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -263,11 +264,11 @@ abstract class _$$EstimateFeeErrorCopyWith<$Res> { } /// @nodoc -class __$$EstimateFeeErrorCopyWithImpl<$Res> - extends _$EstimateFeeCopyWithImpl<$Res, _$EstimateFeeError> - implements _$$EstimateFeeErrorCopyWith<$Res> { - __$$EstimateFeeErrorCopyWithImpl( - _$EstimateFeeError _value, $Res Function(_$EstimateFeeError) _then) +class __$$EstimateFeeErrorImplCopyWithImpl<$Res> + extends _$EstimateFeeCopyWithImpl<$Res, _$EstimateFeeErrorImpl> + implements _$$EstimateFeeErrorImplCopyWith<$Res> { + __$$EstimateFeeErrorImplCopyWithImpl(_$EstimateFeeErrorImpl _value, + $Res Function(_$EstimateFeeErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -275,7 +276,7 @@ class __$$EstimateFeeErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$EstimateFeeError( + return _then(_$EstimateFeeErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -294,12 +295,12 @@ class __$$EstimateFeeErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$EstimateFeeError implements EstimateFeeError { - const _$EstimateFeeError({required this.error, final String? $type}) +class _$EstimateFeeErrorImpl implements EstimateFeeError { + const _$EstimateFeeErrorImpl({required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$EstimateFeeError.fromJson(Map json) => - _$$EstimateFeeErrorFromJson(json); + factory _$EstimateFeeErrorImpl.fromJson(Map json) => + _$$EstimateFeeErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -313,10 +314,10 @@ class _$EstimateFeeError implements EstimateFeeError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$EstimateFeeError && + other is _$EstimateFeeErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -327,8 +328,9 @@ class _$EstimateFeeError implements EstimateFeeError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$EstimateFeeErrorCopyWith<_$EstimateFeeError> get copyWith => - __$$EstimateFeeErrorCopyWithImpl<_$EstimateFeeError>(this, _$identity); + _$$EstimateFeeErrorImplCopyWith<_$EstimateFeeErrorImpl> get copyWith => + __$$EstimateFeeErrorImplCopyWithImpl<_$EstimateFeeErrorImpl>( + this, _$identity); @override @optionalTypeArgs @@ -394,7 +396,7 @@ class _$EstimateFeeError implements EstimateFeeError { @override Map toJson() { - return _$$EstimateFeeErrorToJson( + return _$$EstimateFeeErrorImplToJson( this, ); } @@ -402,14 +404,14 @@ class _$EstimateFeeError implements EstimateFeeError { abstract class EstimateFeeError implements EstimateFee { const factory EstimateFeeError({required final JsonRpcApiError error}) = - _$EstimateFeeError; + _$EstimateFeeErrorImpl; factory EstimateFeeError.fromJson(Map json) = - _$EstimateFeeError.fromJson; + _$EstimateFeeErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$EstimateFeeErrorCopyWith<_$EstimateFeeError> get copyWith => + _$$EstimateFeeErrorImplCopyWith<_$EstimateFeeErrorImpl> get copyWith => throw _privateConstructorUsedError; } @@ -667,11 +669,12 @@ class _$BroadcastedTxnCopyWithImpl<$Res, $Val extends BroadcastedTxn> } /// @nodoc -abstract class _$$BroadcastedInvokeTxnV0CopyWith<$Res> +abstract class _$$BroadcastedInvokeTxnV0ImplCopyWith<$Res> implements $BroadcastedTxnCopyWith<$Res> { - factory _$$BroadcastedInvokeTxnV0CopyWith(_$BroadcastedInvokeTxnV0 value, - $Res Function(_$BroadcastedInvokeTxnV0) then) = - __$$BroadcastedInvokeTxnV0CopyWithImpl<$Res>; + factory _$$BroadcastedInvokeTxnV0ImplCopyWith( + _$BroadcastedInvokeTxnV0Impl value, + $Res Function(_$BroadcastedInvokeTxnV0Impl) then) = + __$$BroadcastedInvokeTxnV0ImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -686,11 +689,12 @@ abstract class _$$BroadcastedInvokeTxnV0CopyWith<$Res> } /// @nodoc -class __$$BroadcastedInvokeTxnV0CopyWithImpl<$Res> - extends _$BroadcastedTxnCopyWithImpl<$Res, _$BroadcastedInvokeTxnV0> - implements _$$BroadcastedInvokeTxnV0CopyWith<$Res> { - __$$BroadcastedInvokeTxnV0CopyWithImpl(_$BroadcastedInvokeTxnV0 _value, - $Res Function(_$BroadcastedInvokeTxnV0) _then) +class __$$BroadcastedInvokeTxnV0ImplCopyWithImpl<$Res> + extends _$BroadcastedTxnCopyWithImpl<$Res, _$BroadcastedInvokeTxnV0Impl> + implements _$$BroadcastedInvokeTxnV0ImplCopyWith<$Res> { + __$$BroadcastedInvokeTxnV0ImplCopyWithImpl( + _$BroadcastedInvokeTxnV0Impl _value, + $Res Function(_$BroadcastedInvokeTxnV0Impl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -705,7 +709,7 @@ class __$$BroadcastedInvokeTxnV0CopyWithImpl<$Res> Object? entryPointSelector = null, Object? calldata = null, }) { - return _then(_$BroadcastedInvokeTxnV0( + return _then(_$BroadcastedInvokeTxnV0Impl( type: null == type ? _value.type : type // ignore: cast_nullable_to_non_nullable @@ -745,8 +749,8 @@ class __$$BroadcastedInvokeTxnV0CopyWithImpl<$Res> /// @nodoc @JsonSerializable(includeIfNull: false) -class _$BroadcastedInvokeTxnV0 implements BroadcastedInvokeTxnV0 { - const _$BroadcastedInvokeTxnV0( +class _$BroadcastedInvokeTxnV0Impl implements BroadcastedInvokeTxnV0 { + const _$BroadcastedInvokeTxnV0Impl( {required this.type, @JsonKey(toJson: maxFeeToJson) required this.maxFee, required this.version, @@ -760,8 +764,8 @@ class _$BroadcastedInvokeTxnV0 implements BroadcastedInvokeTxnV0 { _calldata = calldata, $type = $type ?? 'broadcastedInvokeTxnV0'; - factory _$BroadcastedInvokeTxnV0.fromJson(Map json) => - _$$BroadcastedInvokeTxnV0FromJson(json); + factory _$BroadcastedInvokeTxnV0Impl.fromJson(Map json) => + _$$BroadcastedInvokeTxnV0ImplFromJson(json); // start of BROADCASTED_TXN_COMMON_PROPERTIES @override @@ -804,10 +808,10 @@ class _$BroadcastedInvokeTxnV0 implements BroadcastedInvokeTxnV0 { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$BroadcastedInvokeTxnV0 && + other is _$BroadcastedInvokeTxnV0Impl && (identical(other.type, type) || other.type == type) && (identical(other.maxFee, maxFee) || other.maxFee == maxFee) && (identical(other.version, version) || other.version == version) && @@ -837,9 +841,9 @@ class _$BroadcastedInvokeTxnV0 implements BroadcastedInvokeTxnV0 { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$BroadcastedInvokeTxnV0CopyWith<_$BroadcastedInvokeTxnV0> get copyWith => - __$$BroadcastedInvokeTxnV0CopyWithImpl<_$BroadcastedInvokeTxnV0>( - this, _$identity); + _$$BroadcastedInvokeTxnV0ImplCopyWith<_$BroadcastedInvokeTxnV0Impl> + get copyWith => __$$BroadcastedInvokeTxnV0ImplCopyWithImpl< + _$BroadcastedInvokeTxnV0Impl>(this, _$identity); @override @optionalTypeArgs @@ -1052,7 +1056,7 @@ class _$BroadcastedInvokeTxnV0 implements BroadcastedInvokeTxnV0 { @override Map toJson() { - return _$$BroadcastedInvokeTxnV0ToJson( + return _$$BroadcastedInvokeTxnV0ImplToJson( this, ); } @@ -1067,10 +1071,10 @@ abstract class BroadcastedInvokeTxnV0 implements BroadcastedTxn { final Felt? nonce, required final Felt contractAddress, required final Felt entryPointSelector, - required final List calldata}) = _$BroadcastedInvokeTxnV0; + required final List calldata}) = _$BroadcastedInvokeTxnV0Impl; factory BroadcastedInvokeTxnV0.fromJson(Map json) = - _$BroadcastedInvokeTxnV0.fromJson; + _$BroadcastedInvokeTxnV0Impl.fromJson; @override // start of BROADCASTED_TXN_COMMON_PROPERTIES String get type; @@ -1086,16 +1090,17 @@ abstract class BroadcastedInvokeTxnV0 implements BroadcastedTxn { List get calldata; @override @JsonKey(ignore: true) - _$$BroadcastedInvokeTxnV0CopyWith<_$BroadcastedInvokeTxnV0> get copyWith => - throw _privateConstructorUsedError; + _$$BroadcastedInvokeTxnV0ImplCopyWith<_$BroadcastedInvokeTxnV0Impl> + get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$BroadcastedInvokeTxnV1CopyWith<$Res> +abstract class _$$BroadcastedInvokeTxnV1ImplCopyWith<$Res> implements $BroadcastedTxnCopyWith<$Res> { - factory _$$BroadcastedInvokeTxnV1CopyWith(_$BroadcastedInvokeTxnV1 value, - $Res Function(_$BroadcastedInvokeTxnV1) then) = - __$$BroadcastedInvokeTxnV1CopyWithImpl<$Res>; + factory _$$BroadcastedInvokeTxnV1ImplCopyWith( + _$BroadcastedInvokeTxnV1Impl value, + $Res Function(_$BroadcastedInvokeTxnV1Impl) then) = + __$$BroadcastedInvokeTxnV1ImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -1109,11 +1114,12 @@ abstract class _$$BroadcastedInvokeTxnV1CopyWith<$Res> } /// @nodoc -class __$$BroadcastedInvokeTxnV1CopyWithImpl<$Res> - extends _$BroadcastedTxnCopyWithImpl<$Res, _$BroadcastedInvokeTxnV1> - implements _$$BroadcastedInvokeTxnV1CopyWith<$Res> { - __$$BroadcastedInvokeTxnV1CopyWithImpl(_$BroadcastedInvokeTxnV1 _value, - $Res Function(_$BroadcastedInvokeTxnV1) _then) +class __$$BroadcastedInvokeTxnV1ImplCopyWithImpl<$Res> + extends _$BroadcastedTxnCopyWithImpl<$Res, _$BroadcastedInvokeTxnV1Impl> + implements _$$BroadcastedInvokeTxnV1ImplCopyWith<$Res> { + __$$BroadcastedInvokeTxnV1ImplCopyWithImpl( + _$BroadcastedInvokeTxnV1Impl _value, + $Res Function(_$BroadcastedInvokeTxnV1Impl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -1127,7 +1133,7 @@ class __$$BroadcastedInvokeTxnV1CopyWithImpl<$Res> Object? senderAddress = null, Object? calldata = null, }) { - return _then(_$BroadcastedInvokeTxnV1( + return _then(_$BroadcastedInvokeTxnV1Impl( type: null == type ? _value.type : type // ignore: cast_nullable_to_non_nullable @@ -1163,8 +1169,8 @@ class __$$BroadcastedInvokeTxnV1CopyWithImpl<$Res> /// @nodoc @JsonSerializable(includeIfNull: false) -class _$BroadcastedInvokeTxnV1 implements BroadcastedInvokeTxnV1 { - const _$BroadcastedInvokeTxnV1( +class _$BroadcastedInvokeTxnV1Impl implements BroadcastedInvokeTxnV1 { + const _$BroadcastedInvokeTxnV1Impl( {required this.type, @JsonKey(toJson: maxFeeToJson) required this.maxFee, required this.version, @@ -1177,8 +1183,8 @@ class _$BroadcastedInvokeTxnV1 implements BroadcastedInvokeTxnV1 { _calldata = calldata, $type = $type ?? 'broadcastedInvokeTxnV1'; - factory _$BroadcastedInvokeTxnV1.fromJson(Map json) => - _$$BroadcastedInvokeTxnV1FromJson(json); + factory _$BroadcastedInvokeTxnV1Impl.fromJson(Map json) => + _$$BroadcastedInvokeTxnV1ImplFromJson(json); // start of BROADCASTED_TXN_COMMON_PROPERTIES @override @@ -1219,10 +1225,10 @@ class _$BroadcastedInvokeTxnV1 implements BroadcastedInvokeTxnV1 { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$BroadcastedInvokeTxnV1 && + other is _$BroadcastedInvokeTxnV1Impl && (identical(other.type, type) || other.type == type) && (identical(other.maxFee, maxFee) || other.maxFee == maxFee) && (identical(other.version, version) || other.version == version) && @@ -1249,9 +1255,9 @@ class _$BroadcastedInvokeTxnV1 implements BroadcastedInvokeTxnV1 { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$BroadcastedInvokeTxnV1CopyWith<_$BroadcastedInvokeTxnV1> get copyWith => - __$$BroadcastedInvokeTxnV1CopyWithImpl<_$BroadcastedInvokeTxnV1>( - this, _$identity); + _$$BroadcastedInvokeTxnV1ImplCopyWith<_$BroadcastedInvokeTxnV1Impl> + get copyWith => __$$BroadcastedInvokeTxnV1ImplCopyWithImpl< + _$BroadcastedInvokeTxnV1Impl>(this, _$identity); @override @optionalTypeArgs @@ -1464,7 +1470,7 @@ class _$BroadcastedInvokeTxnV1 implements BroadcastedInvokeTxnV1 { @override Map toJson() { - return _$$BroadcastedInvokeTxnV1ToJson( + return _$$BroadcastedInvokeTxnV1ImplToJson( this, ); } @@ -1478,10 +1484,10 @@ abstract class BroadcastedInvokeTxnV1 implements BroadcastedTxn { required final List signature, required final Felt nonce, required final Felt senderAddress, - required final List calldata}) = _$BroadcastedInvokeTxnV1; + required final List calldata}) = _$BroadcastedInvokeTxnV1Impl; factory BroadcastedInvokeTxnV1.fromJson(Map json) = - _$BroadcastedInvokeTxnV1.fromJson; + _$BroadcastedInvokeTxnV1Impl.fromJson; @override // start of BROADCASTED_TXN_COMMON_PROPERTIES String get type; @@ -1496,16 +1502,17 @@ abstract class BroadcastedInvokeTxnV1 implements BroadcastedTxn { List get calldata; @override @JsonKey(ignore: true) - _$$BroadcastedInvokeTxnV1CopyWith<_$BroadcastedInvokeTxnV1> get copyWith => - throw _privateConstructorUsedError; + _$$BroadcastedInvokeTxnV1ImplCopyWith<_$BroadcastedInvokeTxnV1Impl> + get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$BroadcastedDeclareTxnCopyWith<$Res> +abstract class _$$BroadcastedDeclareTxnImplCopyWith<$Res> implements $BroadcastedTxnCopyWith<$Res> { - factory _$$BroadcastedDeclareTxnCopyWith(_$BroadcastedDeclareTxn value, - $Res Function(_$BroadcastedDeclareTxn) then) = - __$$BroadcastedDeclareTxnCopyWithImpl<$Res>; + factory _$$BroadcastedDeclareTxnImplCopyWith( + _$BroadcastedDeclareTxnImpl value, + $Res Function(_$BroadcastedDeclareTxnImpl) then) = + __$$BroadcastedDeclareTxnImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -1521,11 +1528,11 @@ abstract class _$$BroadcastedDeclareTxnCopyWith<$Res> } /// @nodoc -class __$$BroadcastedDeclareTxnCopyWithImpl<$Res> - extends _$BroadcastedTxnCopyWithImpl<$Res, _$BroadcastedDeclareTxn> - implements _$$BroadcastedDeclareTxnCopyWith<$Res> { - __$$BroadcastedDeclareTxnCopyWithImpl(_$BroadcastedDeclareTxn _value, - $Res Function(_$BroadcastedDeclareTxn) _then) +class __$$BroadcastedDeclareTxnImplCopyWithImpl<$Res> + extends _$BroadcastedTxnCopyWithImpl<$Res, _$BroadcastedDeclareTxnImpl> + implements _$$BroadcastedDeclareTxnImplCopyWith<$Res> { + __$$BroadcastedDeclareTxnImplCopyWithImpl(_$BroadcastedDeclareTxnImpl _value, + $Res Function(_$BroadcastedDeclareTxnImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -1539,7 +1546,7 @@ class __$$BroadcastedDeclareTxnCopyWithImpl<$Res> Object? contractClass = null, Object? senderAddress = null, }) { - return _then(_$BroadcastedDeclareTxn( + return _then(_$BroadcastedDeclareTxnImpl( type: null == type ? _value.type : type // ignore: cast_nullable_to_non_nullable @@ -1584,8 +1591,8 @@ class __$$BroadcastedDeclareTxnCopyWithImpl<$Res> /// @nodoc @JsonSerializable(includeIfNull: false) -class _$BroadcastedDeclareTxn implements BroadcastedDeclareTxn { - const _$BroadcastedDeclareTxn( +class _$BroadcastedDeclareTxnImpl implements BroadcastedDeclareTxn { + const _$BroadcastedDeclareTxnImpl( {required this.type, @JsonKey(toJson: maxFeeToJson) required this.maxFee, required this.version, @@ -1597,8 +1604,8 @@ class _$BroadcastedDeclareTxn implements BroadcastedDeclareTxn { : _signature = signature, $type = $type ?? 'broadcastedDeclareTxn'; - factory _$BroadcastedDeclareTxn.fromJson(Map json) => - _$$BroadcastedDeclareTxnFromJson(json); + factory _$BroadcastedDeclareTxnImpl.fromJson(Map json) => + _$$BroadcastedDeclareTxnImplFromJson(json); // start of BROADCASTED_TXN_COMMON_PROPERTIES @override @@ -1633,10 +1640,10 @@ class _$BroadcastedDeclareTxn implements BroadcastedDeclareTxn { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$BroadcastedDeclareTxn && + other is _$BroadcastedDeclareTxnImpl && (identical(other.type, type) || other.type == type) && (identical(other.maxFee, maxFee) || other.maxFee == maxFee) && (identical(other.version, version) || other.version == version) && @@ -1664,9 +1671,9 @@ class _$BroadcastedDeclareTxn implements BroadcastedDeclareTxn { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$BroadcastedDeclareTxnCopyWith<_$BroadcastedDeclareTxn> get copyWith => - __$$BroadcastedDeclareTxnCopyWithImpl<_$BroadcastedDeclareTxn>( - this, _$identity); + _$$BroadcastedDeclareTxnImplCopyWith<_$BroadcastedDeclareTxnImpl> + get copyWith => __$$BroadcastedDeclareTxnImplCopyWithImpl< + _$BroadcastedDeclareTxnImpl>(this, _$identity); @override @optionalTypeArgs @@ -1879,7 +1886,7 @@ class _$BroadcastedDeclareTxn implements BroadcastedDeclareTxn { @override Map toJson() { - return _$$BroadcastedDeclareTxnToJson( + return _$$BroadcastedDeclareTxnImplToJson( this, ); } @@ -1893,10 +1900,10 @@ abstract class BroadcastedDeclareTxn implements BroadcastedTxn { required final List signature, required final Felt nonce, required final DeprecatedContractClass contractClass, - required final Felt senderAddress}) = _$BroadcastedDeclareTxn; + required final Felt senderAddress}) = _$BroadcastedDeclareTxnImpl; factory BroadcastedDeclareTxn.fromJson(Map json) = - _$BroadcastedDeclareTxn.fromJson; + _$BroadcastedDeclareTxnImpl.fromJson; @override // start of BROADCASTED_TXN_COMMON_PROPERTIES String get type; @@ -1910,16 +1917,16 @@ abstract class BroadcastedDeclareTxn implements BroadcastedTxn { Felt get senderAddress; @override @JsonKey(ignore: true) - _$$BroadcastedDeclareTxnCopyWith<_$BroadcastedDeclareTxn> get copyWith => - throw _privateConstructorUsedError; + _$$BroadcastedDeclareTxnImplCopyWith<_$BroadcastedDeclareTxnImpl> + get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$BroadcastedDeployTxnCopyWith<$Res> +abstract class _$$BroadcastedDeployTxnImplCopyWith<$Res> implements $BroadcastedTxnCopyWith<$Res> { - factory _$$BroadcastedDeployTxnCopyWith(_$BroadcastedDeployTxn value, - $Res Function(_$BroadcastedDeployTxn) then) = - __$$BroadcastedDeployTxnCopyWithImpl<$Res>; + factory _$$BroadcastedDeployTxnImplCopyWith(_$BroadcastedDeployTxnImpl value, + $Res Function(_$BroadcastedDeployTxnImpl) then) = + __$$BroadcastedDeployTxnImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -1933,11 +1940,11 @@ abstract class _$$BroadcastedDeployTxnCopyWith<$Res> } /// @nodoc -class __$$BroadcastedDeployTxnCopyWithImpl<$Res> - extends _$BroadcastedTxnCopyWithImpl<$Res, _$BroadcastedDeployTxn> - implements _$$BroadcastedDeployTxnCopyWith<$Res> { - __$$BroadcastedDeployTxnCopyWithImpl(_$BroadcastedDeployTxn _value, - $Res Function(_$BroadcastedDeployTxn) _then) +class __$$BroadcastedDeployTxnImplCopyWithImpl<$Res> + extends _$BroadcastedTxnCopyWithImpl<$Res, _$BroadcastedDeployTxnImpl> + implements _$$BroadcastedDeployTxnImplCopyWith<$Res> { + __$$BroadcastedDeployTxnImplCopyWithImpl(_$BroadcastedDeployTxnImpl _value, + $Res Function(_$BroadcastedDeployTxnImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -1949,7 +1956,7 @@ class __$$BroadcastedDeployTxnCopyWithImpl<$Res> Object? contractAddressSalt = null, Object? constructorCalldata = null, }) { - return _then(_$BroadcastedDeployTxn( + return _then(_$BroadcastedDeployTxnImpl( contractClass: null == contractClass ? _value.contractClass : contractClass // ignore: cast_nullable_to_non_nullable @@ -1986,8 +1993,8 @@ class __$$BroadcastedDeployTxnCopyWithImpl<$Res> /// @nodoc @JsonSerializable(includeIfNull: false) -class _$BroadcastedDeployTxn implements BroadcastedDeployTxn { - const _$BroadcastedDeployTxn( +class _$BroadcastedDeployTxnImpl implements BroadcastedDeployTxn { + const _$BroadcastedDeployTxnImpl( {required this.contractClass, required this.version, required this.type, @@ -1997,8 +2004,8 @@ class _$BroadcastedDeployTxn implements BroadcastedDeployTxn { : _constructorCalldata = constructorCalldata, $type = $type ?? 'broadcastedDeployTxn'; - factory _$BroadcastedDeployTxn.fromJson(Map json) => - _$$BroadcastedDeployTxnFromJson(json); + factory _$BroadcastedDeployTxnImpl.fromJson(Map json) => + _$$BroadcastedDeployTxnImplFromJson(json); @override final DeprecatedContractClass contractClass; @@ -2027,10 +2034,10 @@ class _$BroadcastedDeployTxn implements BroadcastedDeployTxn { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$BroadcastedDeployTxn && + other is _$BroadcastedDeployTxnImpl && (identical(other.contractClass, contractClass) || other.contractClass == contractClass) && (identical(other.version, version) || other.version == version) && @@ -2054,9 +2061,10 @@ class _$BroadcastedDeployTxn implements BroadcastedDeployTxn { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$BroadcastedDeployTxnCopyWith<_$BroadcastedDeployTxn> get copyWith => - __$$BroadcastedDeployTxnCopyWithImpl<_$BroadcastedDeployTxn>( - this, _$identity); + _$$BroadcastedDeployTxnImplCopyWith<_$BroadcastedDeployTxnImpl> + get copyWith => + __$$BroadcastedDeployTxnImplCopyWithImpl<_$BroadcastedDeployTxnImpl>( + this, _$identity); @override @optionalTypeArgs @@ -2269,7 +2277,7 @@ class _$BroadcastedDeployTxn implements BroadcastedDeployTxn { @override Map toJson() { - return _$$BroadcastedDeployTxnToJson( + return _$$BroadcastedDeployTxnImplToJson( this, ); } @@ -2277,14 +2285,15 @@ class _$BroadcastedDeployTxn implements BroadcastedDeployTxn { abstract class BroadcastedDeployTxn implements BroadcastedTxn { const factory BroadcastedDeployTxn( - {required final DeprecatedContractClass contractClass, - required final String version, - required final String type, - required final Felt contractAddressSalt, - required final List constructorCalldata}) = _$BroadcastedDeployTxn; + {required final DeprecatedContractClass contractClass, + required final String version, + required final String type, + required final Felt contractAddressSalt, + required final List constructorCalldata}) = + _$BroadcastedDeployTxnImpl; factory BroadcastedDeployTxn.fromJson(Map json) = - _$BroadcastedDeployTxn.fromJson; + _$BroadcastedDeployTxnImpl.fromJson; DeprecatedContractClass get contractClass; @override // start of DEPLOY_TXN_PROPERTIES @@ -2295,17 +2304,17 @@ abstract class BroadcastedDeployTxn implements BroadcastedTxn { List get constructorCalldata; @override @JsonKey(ignore: true) - _$$BroadcastedDeployTxnCopyWith<_$BroadcastedDeployTxn> get copyWith => - throw _privateConstructorUsedError; + _$$BroadcastedDeployTxnImplCopyWith<_$BroadcastedDeployTxnImpl> + get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$BroadcastedDeployAccountTxnCopyWith<$Res> +abstract class _$$BroadcastedDeployAccountTxnImplCopyWith<$Res> implements $BroadcastedTxnCopyWith<$Res> { - factory _$$BroadcastedDeployAccountTxnCopyWith( - _$BroadcastedDeployAccountTxn value, - $Res Function(_$BroadcastedDeployAccountTxn) then) = - __$$BroadcastedDeployAccountTxnCopyWithImpl<$Res>; + factory _$$BroadcastedDeployAccountTxnImplCopyWith( + _$BroadcastedDeployAccountTxnImpl value, + $Res Function(_$BroadcastedDeployAccountTxnImpl) then) = + __$$BroadcastedDeployAccountTxnImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -2320,12 +2329,13 @@ abstract class _$$BroadcastedDeployAccountTxnCopyWith<$Res> } /// @nodoc -class __$$BroadcastedDeployAccountTxnCopyWithImpl<$Res> - extends _$BroadcastedTxnCopyWithImpl<$Res, _$BroadcastedDeployAccountTxn> - implements _$$BroadcastedDeployAccountTxnCopyWith<$Res> { - __$$BroadcastedDeployAccountTxnCopyWithImpl( - _$BroadcastedDeployAccountTxn _value, - $Res Function(_$BroadcastedDeployAccountTxn) _then) +class __$$BroadcastedDeployAccountTxnImplCopyWithImpl<$Res> + extends _$BroadcastedTxnCopyWithImpl<$Res, + _$BroadcastedDeployAccountTxnImpl> + implements _$$BroadcastedDeployAccountTxnImplCopyWith<$Res> { + __$$BroadcastedDeployAccountTxnImplCopyWithImpl( + _$BroadcastedDeployAccountTxnImpl _value, + $Res Function(_$BroadcastedDeployAccountTxnImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -2340,7 +2350,7 @@ class __$$BroadcastedDeployAccountTxnCopyWithImpl<$Res> Object? signature = null, Object? nonce = null, }) { - return _then(_$BroadcastedDeployAccountTxn( + return _then(_$BroadcastedDeployAccountTxnImpl( contractAddressSalt: null == contractAddressSalt ? _value.contractAddressSalt : contractAddressSalt // ignore: cast_nullable_to_non_nullable @@ -2380,8 +2390,8 @@ class __$$BroadcastedDeployAccountTxnCopyWithImpl<$Res> /// @nodoc @JsonSerializable(includeIfNull: false) -class _$BroadcastedDeployAccountTxn implements BroadcastedDeployAccountTxn { - const _$BroadcastedDeployAccountTxn( +class _$BroadcastedDeployAccountTxnImpl implements BroadcastedDeployAccountTxn { + const _$BroadcastedDeployAccountTxnImpl( {required this.contractAddressSalt, required this.classHash, required final List constructorCalldata, @@ -2395,8 +2405,9 @@ class _$BroadcastedDeployAccountTxn implements BroadcastedDeployAccountTxn { _signature = signature, $type = $type ?? 'broadcastedDeployAccountTxn'; - factory _$BroadcastedDeployAccountTxn.fromJson(Map json) => - _$$BroadcastedDeployAccountTxnFromJson(json); + factory _$BroadcastedDeployAccountTxnImpl.fromJson( + Map json) => + _$$BroadcastedDeployAccountTxnImplFromJson(json); @override final Felt contractAddressSalt; @@ -2439,10 +2450,10 @@ class _$BroadcastedDeployAccountTxn implements BroadcastedDeployAccountTxn { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$BroadcastedDeployAccountTxn && + other is _$BroadcastedDeployAccountTxnImpl && (identical(other.contractAddressSalt, contractAddressSalt) || other.contractAddressSalt == contractAddressSalt) && (identical(other.classHash, classHash) || @@ -2473,9 +2484,9 @@ class _$BroadcastedDeployAccountTxn implements BroadcastedDeployAccountTxn { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$BroadcastedDeployAccountTxnCopyWith<_$BroadcastedDeployAccountTxn> - get copyWith => __$$BroadcastedDeployAccountTxnCopyWithImpl< - _$BroadcastedDeployAccountTxn>(this, _$identity); + _$$BroadcastedDeployAccountTxnImplCopyWith<_$BroadcastedDeployAccountTxnImpl> + get copyWith => __$$BroadcastedDeployAccountTxnImplCopyWithImpl< + _$BroadcastedDeployAccountTxnImpl>(this, _$identity); @override @optionalTypeArgs @@ -2688,7 +2699,7 @@ class _$BroadcastedDeployAccountTxn implements BroadcastedDeployAccountTxn { @override Map toJson() { - return _$$BroadcastedDeployAccountTxnToJson( + return _$$BroadcastedDeployAccountTxnImplToJson( this, ); } @@ -2703,10 +2714,10 @@ abstract class BroadcastedDeployAccountTxn implements BroadcastedTxn { @JsonKey(toJson: maxFeeToJson) required final Felt maxFee, required final String version, required final List signature, - required final Felt nonce}) = _$BroadcastedDeployAccountTxn; + required final Felt nonce}) = _$BroadcastedDeployAccountTxnImpl; factory BroadcastedDeployAccountTxn.fromJson(Map json) = - _$BroadcastedDeployAccountTxn.fromJson; + _$BroadcastedDeployAccountTxnImpl.fromJson; Felt get contractAddressSalt; Felt get classHash; @@ -2721,6 +2732,6 @@ abstract class BroadcastedDeployAccountTxn implements BroadcastedTxn { Felt get nonce; @override @JsonKey(ignore: true) - _$$BroadcastedDeployAccountTxnCopyWith<_$BroadcastedDeployAccountTxn> + _$$BroadcastedDeployAccountTxnImplCopyWith<_$BroadcastedDeployAccountTxnImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/estimate_fee.g.dart b/packages/starknet_provider/lib/src/model/estimate_fee.g.dart index b08f1bd4..aae29b91 100644 --- a/packages/starknet_provider/lib/src/model/estimate_fee.g.dart +++ b/packages/starknet_provider/lib/src/model/estimate_fee.g.dart @@ -20,35 +20,39 @@ Map _$EstimateFeeRequestToJson(EstimateFeeRequest instance) => 'block_id': instance.blockId.toJson(), }; -_$EstimateFeeResult _$$EstimateFeeResultFromJson(Map json) => - _$EstimateFeeResult( +_$EstimateFeeResultImpl _$$EstimateFeeResultImplFromJson( + Map json) => + _$EstimateFeeResultImpl( result: (json['result'] as List) .map((e) => FeeEstimate.fromJson(e as Map)) .toList(), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$EstimateFeeResultToJson(_$EstimateFeeResult instance) => +Map _$$EstimateFeeResultImplToJson( + _$EstimateFeeResultImpl instance) => { 'result': instance.result.map((e) => e.toJson()).toList(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$EstimateFeeError _$$EstimateFeeErrorFromJson(Map json) => - _$EstimateFeeError( +_$EstimateFeeErrorImpl _$$EstimateFeeErrorImplFromJson( + Map json) => + _$EstimateFeeErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$EstimateFeeErrorToJson(_$EstimateFeeError instance) => +Map _$$EstimateFeeErrorImplToJson( + _$EstimateFeeErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$BroadcastedInvokeTxnV0 _$$BroadcastedInvokeTxnV0FromJson( +_$BroadcastedInvokeTxnV0Impl _$$BroadcastedInvokeTxnV0ImplFromJson( Map json) => - _$BroadcastedInvokeTxnV0( + _$BroadcastedInvokeTxnV0Impl( type: json['type'] as String, maxFee: Felt.fromJson(json['max_fee'] as String), version: json['version'] as String, @@ -65,8 +69,8 @@ _$BroadcastedInvokeTxnV0 _$$BroadcastedInvokeTxnV0FromJson( $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$BroadcastedInvokeTxnV0ToJson( - _$BroadcastedInvokeTxnV0 instance) { +Map _$$BroadcastedInvokeTxnV0ImplToJson( + _$BroadcastedInvokeTxnV0Impl instance) { final val = { 'type': instance.type, 'max_fee': maxFeeToJson(instance.maxFee), @@ -88,9 +92,9 @@ Map _$$BroadcastedInvokeTxnV0ToJson( return val; } -_$BroadcastedInvokeTxnV1 _$$BroadcastedInvokeTxnV1FromJson( +_$BroadcastedInvokeTxnV1Impl _$$BroadcastedInvokeTxnV1ImplFromJson( Map json) => - _$BroadcastedInvokeTxnV1( + _$BroadcastedInvokeTxnV1Impl( type: json['type'] as String, maxFee: Felt.fromJson(json['max_fee'] as String), version: json['version'] as String, @@ -105,8 +109,8 @@ _$BroadcastedInvokeTxnV1 _$$BroadcastedInvokeTxnV1FromJson( $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$BroadcastedInvokeTxnV1ToJson( - _$BroadcastedInvokeTxnV1 instance) => +Map _$$BroadcastedInvokeTxnV1ImplToJson( + _$BroadcastedInvokeTxnV1Impl instance) => { 'type': instance.type, 'max_fee': maxFeeToJson(instance.maxFee), @@ -118,9 +122,9 @@ Map _$$BroadcastedInvokeTxnV1ToJson( 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$BroadcastedDeclareTxn _$$BroadcastedDeclareTxnFromJson( +_$BroadcastedDeclareTxnImpl _$$BroadcastedDeclareTxnImplFromJson( Map json) => - _$BroadcastedDeclareTxn( + _$BroadcastedDeclareTxnImpl( type: json['type'] as String, maxFee: Felt.fromJson(json['max_fee'] as String), version: json['version'] as String, @@ -134,8 +138,8 @@ _$BroadcastedDeclareTxn _$$BroadcastedDeclareTxnFromJson( $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$BroadcastedDeclareTxnToJson( - _$BroadcastedDeclareTxn instance) => +Map _$$BroadcastedDeclareTxnImplToJson( + _$BroadcastedDeclareTxnImpl instance) => { 'type': instance.type, 'max_fee': maxFeeToJson(instance.maxFee), @@ -147,9 +151,9 @@ Map _$$BroadcastedDeclareTxnToJson( 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$BroadcastedDeployTxn _$$BroadcastedDeployTxnFromJson( +_$BroadcastedDeployTxnImpl _$$BroadcastedDeployTxnImplFromJson( Map json) => - _$BroadcastedDeployTxn( + _$BroadcastedDeployTxnImpl( contractClass: DeprecatedContractClass.fromJson( json['contract_class'] as Map), version: json['version'] as String, @@ -162,8 +166,8 @@ _$BroadcastedDeployTxn _$$BroadcastedDeployTxnFromJson( $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$BroadcastedDeployTxnToJson( - _$BroadcastedDeployTxn instance) => +Map _$$BroadcastedDeployTxnImplToJson( + _$BroadcastedDeployTxnImpl instance) => { 'contract_class': instance.contractClass.toJson(), 'version': instance.version, @@ -174,9 +178,9 @@ Map _$$BroadcastedDeployTxnToJson( 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$BroadcastedDeployAccountTxn _$$BroadcastedDeployAccountTxnFromJson( +_$BroadcastedDeployAccountTxnImpl _$$BroadcastedDeployAccountTxnImplFromJson( Map json) => - _$BroadcastedDeployAccountTxn( + _$BroadcastedDeployAccountTxnImpl( contractAddressSalt: Felt.fromJson(json['contract_address_salt'] as String), classHash: Felt.fromJson(json['class_hash'] as String), @@ -193,8 +197,8 @@ _$BroadcastedDeployAccountTxn _$$BroadcastedDeployAccountTxnFromJson( $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$BroadcastedDeployAccountTxnToJson( - _$BroadcastedDeployAccountTxn instance) => +Map _$$BroadcastedDeployAccountTxnImplToJson( + _$BroadcastedDeployAccountTxnImpl instance) => { 'contract_address_salt': instance.contractAddressSalt.toJson(), 'class_hash': instance.classHash.toJson(), diff --git a/packages/starknet_provider/lib/src/model/event.freezed.dart b/packages/starknet_provider/lib/src/model/event.freezed.dart index 55d3e78c..e5d94dbd 100644 --- a/packages/starknet_provider/lib/src/model/event.freezed.dart +++ b/packages/starknet_provider/lib/src/model/event.freezed.dart @@ -12,7 +12,7 @@ part of 'event.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); Event _$EventFromJson(Map json) { return _Event.fromJson(json); @@ -73,18 +73,21 @@ class _$EventCopyWithImpl<$Res, $Val extends Event> } /// @nodoc -abstract class _$$_EventCopyWith<$Res> implements $EventCopyWith<$Res> { - factory _$$_EventCopyWith(_$_Event value, $Res Function(_$_Event) then) = - __$$_EventCopyWithImpl<$Res>; +abstract class _$$EventImplCopyWith<$Res> implements $EventCopyWith<$Res> { + factory _$$EventImplCopyWith( + _$EventImpl value, $Res Function(_$EventImpl) then) = + __$$EventImplCopyWithImpl<$Res>; @override @useResult $Res call({Felt? fromAddress, List? keys, List? data}); } /// @nodoc -class __$$_EventCopyWithImpl<$Res> extends _$EventCopyWithImpl<$Res, _$_Event> - implements _$$_EventCopyWith<$Res> { - __$$_EventCopyWithImpl(_$_Event _value, $Res Function(_$_Event) _then) +class __$$EventImplCopyWithImpl<$Res> + extends _$EventCopyWithImpl<$Res, _$EventImpl> + implements _$$EventImplCopyWith<$Res> { + __$$EventImplCopyWithImpl( + _$EventImpl _value, $Res Function(_$EventImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -94,7 +97,7 @@ class __$$_EventCopyWithImpl<$Res> extends _$EventCopyWithImpl<$Res, _$_Event> Object? keys = freezed, Object? data = freezed, }) { - return _then(_$_Event( + return _then(_$EventImpl( fromAddress: freezed == fromAddress ? _value.fromAddress : fromAddress // ignore: cast_nullable_to_non_nullable @@ -113,16 +116,16 @@ class __$$_EventCopyWithImpl<$Res> extends _$EventCopyWithImpl<$Res, _$_Event> /// @nodoc @JsonSerializable() -class _$_Event implements _Event { - const _$_Event( +class _$EventImpl implements _Event { + const _$EventImpl( {required this.fromAddress, required final List? keys, required final List? data}) : _keys = keys, _data = data; - factory _$_Event.fromJson(Map json) => - _$$_EventFromJson(json); + factory _$EventImpl.fromJson(Map json) => + _$$EventImplFromJson(json); @override final Felt? fromAddress; @@ -154,10 +157,10 @@ class _$_Event implements _Event { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_Event && + other is _$EventImpl && (identical(other.fromAddress, fromAddress) || other.fromAddress == fromAddress) && const DeepCollectionEquality().equals(other._keys, _keys) && @@ -175,12 +178,12 @@ class _$_Event implements _Event { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_EventCopyWith<_$_Event> get copyWith => - __$$_EventCopyWithImpl<_$_Event>(this, _$identity); + _$$EventImplCopyWith<_$EventImpl> get copyWith => + __$$EventImplCopyWithImpl<_$EventImpl>(this, _$identity); @override Map toJson() { - return _$$_EventToJson( + return _$$EventImplToJson( this, ); } @@ -190,9 +193,9 @@ abstract class _Event implements Event { const factory _Event( {required final Felt? fromAddress, required final List? keys, - required final List? data}) = _$_Event; + required final List? data}) = _$EventImpl; - factory _Event.fromJson(Map json) = _$_Event.fromJson; + factory _Event.fromJson(Map json) = _$EventImpl.fromJson; @override Felt? get fromAddress; @@ -202,6 +205,6 @@ abstract class _Event implements Event { List? get data; @override @JsonKey(ignore: true) - _$$_EventCopyWith<_$_Event> get copyWith => + _$$EventImplCopyWith<_$EventImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/event.g.dart b/packages/starknet_provider/lib/src/model/event.g.dart index 6dca6590..f6ae133a 100644 --- a/packages/starknet_provider/lib/src/model/event.g.dart +++ b/packages/starknet_provider/lib/src/model/event.g.dart @@ -6,7 +6,7 @@ part of 'event.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_Event _$$_EventFromJson(Map json) => _$_Event( +_$EventImpl _$$EventImplFromJson(Map json) => _$EventImpl( fromAddress: json['from_address'] == null ? null : Felt.fromJson(json['from_address'] as String), @@ -18,7 +18,8 @@ _$_Event _$$_EventFromJson(Map json) => _$_Event( .toList(), ); -Map _$$_EventToJson(_$_Event instance) => { +Map _$$EventImplToJson(_$EventImpl instance) => + { 'from_address': instance.fromAddress?.toJson(), 'keys': instance.keys?.map((e) => e.toJson()).toList(), 'data': instance.data?.map((e) => e.toJson()).toList(), diff --git a/packages/starknet_provider/lib/src/model/fee_estimate.freezed.dart b/packages/starknet_provider/lib/src/model/fee_estimate.freezed.dart index 2822cd76..6cf84c37 100644 --- a/packages/starknet_provider/lib/src/model/fee_estimate.freezed.dart +++ b/packages/starknet_provider/lib/src/model/fee_estimate.freezed.dart @@ -12,7 +12,7 @@ part of 'fee_estimate.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); FeeEstimate _$FeeEstimateFromJson(Map json) { return _FeeEstimate.fromJson(json); @@ -74,22 +74,22 @@ class _$FeeEstimateCopyWithImpl<$Res, $Val extends FeeEstimate> } /// @nodoc -abstract class _$$_FeeEstimateCopyWith<$Res> +abstract class _$$FeeEstimateImplCopyWith<$Res> implements $FeeEstimateCopyWith<$Res> { - factory _$$_FeeEstimateCopyWith( - _$_FeeEstimate value, $Res Function(_$_FeeEstimate) then) = - __$$_FeeEstimateCopyWithImpl<$Res>; + factory _$$FeeEstimateImplCopyWith( + _$FeeEstimateImpl value, $Res Function(_$FeeEstimateImpl) then) = + __$$FeeEstimateImplCopyWithImpl<$Res>; @override @useResult $Res call({String gasConsumed, String gasPrice, String overallFee}); } /// @nodoc -class __$$_FeeEstimateCopyWithImpl<$Res> - extends _$FeeEstimateCopyWithImpl<$Res, _$_FeeEstimate> - implements _$$_FeeEstimateCopyWith<$Res> { - __$$_FeeEstimateCopyWithImpl( - _$_FeeEstimate _value, $Res Function(_$_FeeEstimate) _then) +class __$$FeeEstimateImplCopyWithImpl<$Res> + extends _$FeeEstimateCopyWithImpl<$Res, _$FeeEstimateImpl> + implements _$$FeeEstimateImplCopyWith<$Res> { + __$$FeeEstimateImplCopyWithImpl( + _$FeeEstimateImpl _value, $Res Function(_$FeeEstimateImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -99,7 +99,7 @@ class __$$_FeeEstimateCopyWithImpl<$Res> Object? gasPrice = null, Object? overallFee = null, }) { - return _then(_$_FeeEstimate( + return _then(_$FeeEstimateImpl( gasConsumed: null == gasConsumed ? _value.gasConsumed : gasConsumed // ignore: cast_nullable_to_non_nullable @@ -118,14 +118,14 @@ class __$$_FeeEstimateCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_FeeEstimate implements _FeeEstimate { - const _$_FeeEstimate( +class _$FeeEstimateImpl implements _FeeEstimate { + const _$FeeEstimateImpl( {required this.gasConsumed, required this.gasPrice, required this.overallFee}); - factory _$_FeeEstimate.fromJson(Map json) => - _$$_FeeEstimateFromJson(json); + factory _$FeeEstimateImpl.fromJson(Map json) => + _$$FeeEstimateImplFromJson(json); @override final String gasConsumed; @@ -140,10 +140,10 @@ class _$_FeeEstimate implements _FeeEstimate { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_FeeEstimate && + other is _$FeeEstimateImpl && (identical(other.gasConsumed, gasConsumed) || other.gasConsumed == gasConsumed) && (identical(other.gasPrice, gasPrice) || @@ -160,12 +160,12 @@ class _$_FeeEstimate implements _FeeEstimate { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_FeeEstimateCopyWith<_$_FeeEstimate> get copyWith => - __$$_FeeEstimateCopyWithImpl<_$_FeeEstimate>(this, _$identity); + _$$FeeEstimateImplCopyWith<_$FeeEstimateImpl> get copyWith => + __$$FeeEstimateImplCopyWithImpl<_$FeeEstimateImpl>(this, _$identity); @override Map toJson() { - return _$$_FeeEstimateToJson( + return _$$FeeEstimateImplToJson( this, ); } @@ -175,10 +175,10 @@ abstract class _FeeEstimate implements FeeEstimate { const factory _FeeEstimate( {required final String gasConsumed, required final String gasPrice, - required final String overallFee}) = _$_FeeEstimate; + required final String overallFee}) = _$FeeEstimateImpl; factory _FeeEstimate.fromJson(Map json) = - _$_FeeEstimate.fromJson; + _$FeeEstimateImpl.fromJson; @override String get gasConsumed; @@ -188,6 +188,6 @@ abstract class _FeeEstimate implements FeeEstimate { String get overallFee; @override @JsonKey(ignore: true) - _$$_FeeEstimateCopyWith<_$_FeeEstimate> get copyWith => + _$$FeeEstimateImplCopyWith<_$FeeEstimateImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/fee_estimate.g.dart b/packages/starknet_provider/lib/src/model/fee_estimate.g.dart index 0e950c59..9825bcb8 100644 --- a/packages/starknet_provider/lib/src/model/fee_estimate.g.dart +++ b/packages/starknet_provider/lib/src/model/fee_estimate.g.dart @@ -6,14 +6,14 @@ part of 'fee_estimate.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_FeeEstimate _$$_FeeEstimateFromJson(Map json) => - _$_FeeEstimate( +_$FeeEstimateImpl _$$FeeEstimateImplFromJson(Map json) => + _$FeeEstimateImpl( gasConsumed: json['gas_consumed'] as String, gasPrice: json['gas_price'] as String, overallFee: json['overall_fee'] as String, ); -Map _$$_FeeEstimateToJson(_$_FeeEstimate instance) => +Map _$$FeeEstimateImplToJson(_$FeeEstimateImpl instance) => { 'gas_consumed': instance.gasConsumed, 'gas_price': instance.gasPrice, diff --git a/packages/starknet_provider/lib/src/model/function_call.freezed.dart b/packages/starknet_provider/lib/src/model/function_call.freezed.dart index a3483d47..5206de33 100644 --- a/packages/starknet_provider/lib/src/model/function_call.freezed.dart +++ b/packages/starknet_provider/lib/src/model/function_call.freezed.dart @@ -12,7 +12,7 @@ part of 'function_call.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); FunctionCall _$FunctionCallFromJson(Map json) { return _FunctionCall.fromJson(json); @@ -75,11 +75,11 @@ class _$FunctionCallCopyWithImpl<$Res, $Val extends FunctionCall> } /// @nodoc -abstract class _$$_FunctionCallCopyWith<$Res> +abstract class _$$FunctionCallImplCopyWith<$Res> implements $FunctionCallCopyWith<$Res> { - factory _$$_FunctionCallCopyWith( - _$_FunctionCall value, $Res Function(_$_FunctionCall) then) = - __$$_FunctionCallCopyWithImpl<$Res>; + factory _$$FunctionCallImplCopyWith( + _$FunctionCallImpl value, $Res Function(_$FunctionCallImpl) then) = + __$$FunctionCallImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -87,11 +87,11 @@ abstract class _$$_FunctionCallCopyWith<$Res> } /// @nodoc -class __$$_FunctionCallCopyWithImpl<$Res> - extends _$FunctionCallCopyWithImpl<$Res, _$_FunctionCall> - implements _$$_FunctionCallCopyWith<$Res> { - __$$_FunctionCallCopyWithImpl( - _$_FunctionCall _value, $Res Function(_$_FunctionCall) _then) +class __$$FunctionCallImplCopyWithImpl<$Res> + extends _$FunctionCallCopyWithImpl<$Res, _$FunctionCallImpl> + implements _$$FunctionCallImplCopyWith<$Res> { + __$$FunctionCallImplCopyWithImpl( + _$FunctionCallImpl _value, $Res Function(_$FunctionCallImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -101,7 +101,7 @@ class __$$_FunctionCallCopyWithImpl<$Res> Object? entryPointSelector = null, Object? calldata = null, }) { - return _then(_$_FunctionCall( + return _then(_$FunctionCallImpl( contractAddress: null == contractAddress ? _value.contractAddress : contractAddress // ignore: cast_nullable_to_non_nullable @@ -120,15 +120,15 @@ class __$$_FunctionCallCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_FunctionCall implements _FunctionCall { - const _$_FunctionCall( +class _$FunctionCallImpl implements _FunctionCall { + const _$FunctionCallImpl( {required this.contractAddress, required this.entryPointSelector, required final List calldata}) : _calldata = calldata; - factory _$_FunctionCall.fromJson(Map json) => - _$$_FunctionCallFromJson(json); + factory _$FunctionCallImpl.fromJson(Map json) => + _$$FunctionCallImplFromJson(json); @override final Felt contractAddress; @@ -148,10 +148,10 @@ class _$_FunctionCall implements _FunctionCall { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_FunctionCall && + other is _$FunctionCallImpl && (identical(other.contractAddress, contractAddress) || other.contractAddress == contractAddress) && (identical(other.entryPointSelector, entryPointSelector) || @@ -167,12 +167,12 @@ class _$_FunctionCall implements _FunctionCall { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_FunctionCallCopyWith<_$_FunctionCall> get copyWith => - __$$_FunctionCallCopyWithImpl<_$_FunctionCall>(this, _$identity); + _$$FunctionCallImplCopyWith<_$FunctionCallImpl> get copyWith => + __$$FunctionCallImplCopyWithImpl<_$FunctionCallImpl>(this, _$identity); @override Map toJson() { - return _$$_FunctionCallToJson( + return _$$FunctionCallImplToJson( this, ); } @@ -182,10 +182,10 @@ abstract class _FunctionCall implements FunctionCall { const factory _FunctionCall( {required final Felt contractAddress, required final Felt entryPointSelector, - required final List calldata}) = _$_FunctionCall; + required final List calldata}) = _$FunctionCallImpl; factory _FunctionCall.fromJson(Map json) = - _$_FunctionCall.fromJson; + _$FunctionCallImpl.fromJson; @override Felt get contractAddress; @@ -195,6 +195,6 @@ abstract class _FunctionCall implements FunctionCall { List get calldata; @override @JsonKey(ignore: true) - _$$_FunctionCallCopyWith<_$_FunctionCall> get copyWith => + _$$FunctionCallImplCopyWith<_$FunctionCallImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/function_call.g.dart b/packages/starknet_provider/lib/src/model/function_call.g.dart index 1e855759..65a1ccee 100644 --- a/packages/starknet_provider/lib/src/model/function_call.g.dart +++ b/packages/starknet_provider/lib/src/model/function_call.g.dart @@ -6,8 +6,8 @@ part of 'function_call.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_FunctionCall _$$_FunctionCallFromJson(Map json) => - _$_FunctionCall( +_$FunctionCallImpl _$$FunctionCallImplFromJson(Map json) => + _$FunctionCallImpl( contractAddress: Felt.fromJson(json['contract_address'] as String), entryPointSelector: Felt.fromJson(json['entry_point_selector'] as String), calldata: (json['calldata'] as List) @@ -15,7 +15,7 @@ _$_FunctionCall _$$_FunctionCallFromJson(Map json) => .toList(), ); -Map _$$_FunctionCallToJson(_$_FunctionCall instance) => +Map _$$FunctionCallImplToJson(_$FunctionCallImpl instance) => { 'contract_address': instance.contractAddress.toJson(), 'entry_point_selector': instance.entryPointSelector.toJson(), diff --git a/packages/starknet_provider/lib/src/model/get_block_txn_count.freezed.dart b/packages/starknet_provider/lib/src/model/get_block_txn_count.freezed.dart index c25a2c50..e1f83a23 100644 --- a/packages/starknet_provider/lib/src/model/get_block_txn_count.freezed.dart +++ b/packages/starknet_provider/lib/src/model/get_block_txn_count.freezed.dart @@ -12,7 +12,7 @@ part of 'get_block_txn_count.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); GetBlockTxnCount _$GetBlockTxnCountFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -92,20 +92,20 @@ class _$GetBlockTxnCountCopyWithImpl<$Res, $Val extends GetBlockTxnCount> } /// @nodoc -abstract class _$$BlockTxnCountResultCopyWith<$Res> { - factory _$$BlockTxnCountResultCopyWith(_$BlockTxnCountResult value, - $Res Function(_$BlockTxnCountResult) then) = - __$$BlockTxnCountResultCopyWithImpl<$Res>; +abstract class _$$BlockTxnCountResultImplCopyWith<$Res> { + factory _$$BlockTxnCountResultImplCopyWith(_$BlockTxnCountResultImpl value, + $Res Function(_$BlockTxnCountResultImpl) then) = + __$$BlockTxnCountResultImplCopyWithImpl<$Res>; @useResult $Res call({int result}); } /// @nodoc -class __$$BlockTxnCountResultCopyWithImpl<$Res> - extends _$GetBlockTxnCountCopyWithImpl<$Res, _$BlockTxnCountResult> - implements _$$BlockTxnCountResultCopyWith<$Res> { - __$$BlockTxnCountResultCopyWithImpl( - _$BlockTxnCountResult _value, $Res Function(_$BlockTxnCountResult) _then) +class __$$BlockTxnCountResultImplCopyWithImpl<$Res> + extends _$GetBlockTxnCountCopyWithImpl<$Res, _$BlockTxnCountResultImpl> + implements _$$BlockTxnCountResultImplCopyWith<$Res> { + __$$BlockTxnCountResultImplCopyWithImpl(_$BlockTxnCountResultImpl _value, + $Res Function(_$BlockTxnCountResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -113,7 +113,7 @@ class __$$BlockTxnCountResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$BlockTxnCountResult( + return _then(_$BlockTxnCountResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -124,12 +124,12 @@ class __$$BlockTxnCountResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$BlockTxnCountResult implements BlockTxnCountResult { - const _$BlockTxnCountResult({required this.result, final String? $type}) +class _$BlockTxnCountResultImpl implements BlockTxnCountResult { + const _$BlockTxnCountResultImpl({required this.result, final String? $type}) : $type = $type ?? 'result'; - factory _$BlockTxnCountResult.fromJson(Map json) => - _$$BlockTxnCountResultFromJson(json); + factory _$BlockTxnCountResultImpl.fromJson(Map json) => + _$$BlockTxnCountResultImplFromJson(json); @override final int result; @@ -143,10 +143,10 @@ class _$BlockTxnCountResult implements BlockTxnCountResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$BlockTxnCountResult && + other is _$BlockTxnCountResultImpl && (identical(other.result, result) || other.result == result)); } @@ -157,8 +157,8 @@ class _$BlockTxnCountResult implements BlockTxnCountResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$BlockTxnCountResultCopyWith<_$BlockTxnCountResult> get copyWith => - __$$BlockTxnCountResultCopyWithImpl<_$BlockTxnCountResult>( + _$$BlockTxnCountResultImplCopyWith<_$BlockTxnCountResultImpl> get copyWith => + __$$BlockTxnCountResultImplCopyWithImpl<_$BlockTxnCountResultImpl>( this, _$identity); @override @@ -225,7 +225,7 @@ class _$BlockTxnCountResult implements BlockTxnCountResult { @override Map toJson() { - return _$$BlockTxnCountResultToJson( + return _$$BlockTxnCountResultImplToJson( this, ); } @@ -233,22 +233,23 @@ class _$BlockTxnCountResult implements BlockTxnCountResult { abstract class BlockTxnCountResult implements GetBlockTxnCount { const factory BlockTxnCountResult({required final int result}) = - _$BlockTxnCountResult; + _$BlockTxnCountResultImpl; factory BlockTxnCountResult.fromJson(Map json) = - _$BlockTxnCountResult.fromJson; + _$BlockTxnCountResultImpl.fromJson; int get result; @JsonKey(ignore: true) - _$$BlockTxnCountResultCopyWith<_$BlockTxnCountResult> get copyWith => + _$$BlockTxnCountResultImplCopyWith<_$BlockTxnCountResultImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$GetBlockTxnCountErrorCopyWith<$Res> { - factory _$$GetBlockTxnCountErrorCopyWith(_$GetBlockTxnCountError value, - $Res Function(_$GetBlockTxnCountError) then) = - __$$GetBlockTxnCountErrorCopyWithImpl<$Res>; +abstract class _$$GetBlockTxnCountErrorImplCopyWith<$Res> { + factory _$$GetBlockTxnCountErrorImplCopyWith( + _$GetBlockTxnCountErrorImpl value, + $Res Function(_$GetBlockTxnCountErrorImpl) then) = + __$$GetBlockTxnCountErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -256,11 +257,11 @@ abstract class _$$GetBlockTxnCountErrorCopyWith<$Res> { } /// @nodoc -class __$$GetBlockTxnCountErrorCopyWithImpl<$Res> - extends _$GetBlockTxnCountCopyWithImpl<$Res, _$GetBlockTxnCountError> - implements _$$GetBlockTxnCountErrorCopyWith<$Res> { - __$$GetBlockTxnCountErrorCopyWithImpl(_$GetBlockTxnCountError _value, - $Res Function(_$GetBlockTxnCountError) _then) +class __$$GetBlockTxnCountErrorImplCopyWithImpl<$Res> + extends _$GetBlockTxnCountCopyWithImpl<$Res, _$GetBlockTxnCountErrorImpl> + implements _$$GetBlockTxnCountErrorImplCopyWith<$Res> { + __$$GetBlockTxnCountErrorImplCopyWithImpl(_$GetBlockTxnCountErrorImpl _value, + $Res Function(_$GetBlockTxnCountErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -268,7 +269,7 @@ class __$$GetBlockTxnCountErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$GetBlockTxnCountError( + return _then(_$GetBlockTxnCountErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -287,12 +288,12 @@ class __$$GetBlockTxnCountErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetBlockTxnCountError implements GetBlockTxnCountError { - const _$GetBlockTxnCountError({required this.error, final String? $type}) +class _$GetBlockTxnCountErrorImpl implements GetBlockTxnCountError { + const _$GetBlockTxnCountErrorImpl({required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$GetBlockTxnCountError.fromJson(Map json) => - _$$GetBlockTxnCountErrorFromJson(json); + factory _$GetBlockTxnCountErrorImpl.fromJson(Map json) => + _$$GetBlockTxnCountErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -306,10 +307,10 @@ class _$GetBlockTxnCountError implements GetBlockTxnCountError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetBlockTxnCountError && + other is _$GetBlockTxnCountErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -320,9 +321,9 @@ class _$GetBlockTxnCountError implements GetBlockTxnCountError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetBlockTxnCountErrorCopyWith<_$GetBlockTxnCountError> get copyWith => - __$$GetBlockTxnCountErrorCopyWithImpl<_$GetBlockTxnCountError>( - this, _$identity); + _$$GetBlockTxnCountErrorImplCopyWith<_$GetBlockTxnCountErrorImpl> + get copyWith => __$$GetBlockTxnCountErrorImplCopyWithImpl< + _$GetBlockTxnCountErrorImpl>(this, _$identity); @override @optionalTypeArgs @@ -388,7 +389,7 @@ class _$GetBlockTxnCountError implements GetBlockTxnCountError { @override Map toJson() { - return _$$GetBlockTxnCountErrorToJson( + return _$$GetBlockTxnCountErrorImplToJson( this, ); } @@ -396,13 +397,13 @@ class _$GetBlockTxnCountError implements GetBlockTxnCountError { abstract class GetBlockTxnCountError implements GetBlockTxnCount { const factory GetBlockTxnCountError({required final JsonRpcApiError error}) = - _$GetBlockTxnCountError; + _$GetBlockTxnCountErrorImpl; factory GetBlockTxnCountError.fromJson(Map json) = - _$GetBlockTxnCountError.fromJson; + _$GetBlockTxnCountErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$GetBlockTxnCountErrorCopyWith<_$GetBlockTxnCountError> get copyWith => - throw _privateConstructorUsedError; + _$$GetBlockTxnCountErrorImplCopyWith<_$GetBlockTxnCountErrorImpl> + get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/get_block_txn_count.g.dart b/packages/starknet_provider/lib/src/model/get_block_txn_count.g.dart index c895ee1b..c66ec25c 100644 --- a/packages/starknet_provider/lib/src/model/get_block_txn_count.g.dart +++ b/packages/starknet_provider/lib/src/model/get_block_txn_count.g.dart @@ -6,29 +6,29 @@ part of 'get_block_txn_count.dart'; // JsonSerializableGenerator // ************************************************************************** -_$BlockTxnCountResult _$$BlockTxnCountResultFromJson( +_$BlockTxnCountResultImpl _$$BlockTxnCountResultImplFromJson( Map json) => - _$BlockTxnCountResult( - result: json['result'] as int, + _$BlockTxnCountResultImpl( + result: (json['result'] as num).toInt(), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$BlockTxnCountResultToJson( - _$BlockTxnCountResult instance) => +Map _$$BlockTxnCountResultImplToJson( + _$BlockTxnCountResultImpl instance) => { 'result': instance.result, 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$GetBlockTxnCountError _$$GetBlockTxnCountErrorFromJson( +_$GetBlockTxnCountErrorImpl _$$GetBlockTxnCountErrorImplFromJson( Map json) => - _$GetBlockTxnCountError( + _$GetBlockTxnCountErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetBlockTxnCountErrorToJson( - _$GetBlockTxnCountError instance) => +Map _$$GetBlockTxnCountErrorImplToJson( + _$GetBlockTxnCountErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, diff --git a/packages/starknet_provider/lib/src/model/get_block_with_tx_hashes.freezed.dart b/packages/starknet_provider/lib/src/model/get_block_with_tx_hashes.freezed.dart index 3771c514..5c88a76f 100644 --- a/packages/starknet_provider/lib/src/model/get_block_with_tx_hashes.freezed.dart +++ b/packages/starknet_provider/lib/src/model/get_block_with_tx_hashes.freezed.dart @@ -12,7 +12,7 @@ part of 'get_block_with_tx_hashes.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); GetBlockWithTxHashes _$GetBlockWithTxHashesFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -93,11 +93,11 @@ class _$GetBlockWithTxHashesCopyWithImpl<$Res, } /// @nodoc -abstract class _$$GetBlockWithTxHashesResultCopyWith<$Res> { - factory _$$GetBlockWithTxHashesResultCopyWith( - _$GetBlockWithTxHashesResult value, - $Res Function(_$GetBlockWithTxHashesResult) then) = - __$$GetBlockWithTxHashesResultCopyWithImpl<$Res>; +abstract class _$$GetBlockWithTxHashesResultImplCopyWith<$Res> { + factory _$$GetBlockWithTxHashesResultImplCopyWith( + _$GetBlockWithTxHashesResultImpl value, + $Res Function(_$GetBlockWithTxHashesResultImpl) then) = + __$$GetBlockWithTxHashesResultImplCopyWithImpl<$Res>; @useResult $Res call({BlockWithTxnHashes result}); @@ -105,13 +105,13 @@ abstract class _$$GetBlockWithTxHashesResultCopyWith<$Res> { } /// @nodoc -class __$$GetBlockWithTxHashesResultCopyWithImpl<$Res> +class __$$GetBlockWithTxHashesResultImplCopyWithImpl<$Res> extends _$GetBlockWithTxHashesCopyWithImpl<$Res, - _$GetBlockWithTxHashesResult> - implements _$$GetBlockWithTxHashesResultCopyWith<$Res> { - __$$GetBlockWithTxHashesResultCopyWithImpl( - _$GetBlockWithTxHashesResult _value, - $Res Function(_$GetBlockWithTxHashesResult) _then) + _$GetBlockWithTxHashesResultImpl> + implements _$$GetBlockWithTxHashesResultImplCopyWith<$Res> { + __$$GetBlockWithTxHashesResultImplCopyWithImpl( + _$GetBlockWithTxHashesResultImpl _value, + $Res Function(_$GetBlockWithTxHashesResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -119,7 +119,7 @@ class __$$GetBlockWithTxHashesResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$GetBlockWithTxHashesResult( + return _then(_$GetBlockWithTxHashesResultImpl( null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -138,12 +138,13 @@ class __$$GetBlockWithTxHashesResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetBlockWithTxHashesResult implements GetBlockWithTxHashesResult { - const _$GetBlockWithTxHashesResult(this.result, {final String? $type}) +class _$GetBlockWithTxHashesResultImpl implements GetBlockWithTxHashesResult { + const _$GetBlockWithTxHashesResultImpl(this.result, {final String? $type}) : $type = $type ?? 'result'; - factory _$GetBlockWithTxHashesResult.fromJson(Map json) => - _$$GetBlockWithTxHashesResultFromJson(json); + factory _$GetBlockWithTxHashesResultImpl.fromJson( + Map json) => + _$$GetBlockWithTxHashesResultImplFromJson(json); @override final BlockWithTxnHashes result; @@ -157,10 +158,10 @@ class _$GetBlockWithTxHashesResult implements GetBlockWithTxHashesResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetBlockWithTxHashesResult && + other is _$GetBlockWithTxHashesResultImpl && (identical(other.result, result) || other.result == result)); } @@ -171,9 +172,9 @@ class _$GetBlockWithTxHashesResult implements GetBlockWithTxHashesResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetBlockWithTxHashesResultCopyWith<_$GetBlockWithTxHashesResult> - get copyWith => __$$GetBlockWithTxHashesResultCopyWithImpl< - _$GetBlockWithTxHashesResult>(this, _$identity); + _$$GetBlockWithTxHashesResultImplCopyWith<_$GetBlockWithTxHashesResultImpl> + get copyWith => __$$GetBlockWithTxHashesResultImplCopyWithImpl< + _$GetBlockWithTxHashesResultImpl>(this, _$identity); @override @optionalTypeArgs @@ -239,7 +240,7 @@ class _$GetBlockWithTxHashesResult implements GetBlockWithTxHashesResult { @override Map toJson() { - return _$$GetBlockWithTxHashesResultToJson( + return _$$GetBlockWithTxHashesResultImplToJson( this, ); } @@ -247,23 +248,23 @@ class _$GetBlockWithTxHashesResult implements GetBlockWithTxHashesResult { abstract class GetBlockWithTxHashesResult implements GetBlockWithTxHashes { const factory GetBlockWithTxHashesResult(final BlockWithTxnHashes result) = - _$GetBlockWithTxHashesResult; + _$GetBlockWithTxHashesResultImpl; factory GetBlockWithTxHashesResult.fromJson(Map json) = - _$GetBlockWithTxHashesResult.fromJson; + _$GetBlockWithTxHashesResultImpl.fromJson; BlockWithTxnHashes get result; @JsonKey(ignore: true) - _$$GetBlockWithTxHashesResultCopyWith<_$GetBlockWithTxHashesResult> + _$$GetBlockWithTxHashesResultImplCopyWith<_$GetBlockWithTxHashesResultImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$GetBlockWithTxHashesErrorCopyWith<$Res> { - factory _$$GetBlockWithTxHashesErrorCopyWith( - _$GetBlockWithTxHashesError value, - $Res Function(_$GetBlockWithTxHashesError) then) = - __$$GetBlockWithTxHashesErrorCopyWithImpl<$Res>; +abstract class _$$GetBlockWithTxHashesErrorImplCopyWith<$Res> { + factory _$$GetBlockWithTxHashesErrorImplCopyWith( + _$GetBlockWithTxHashesErrorImpl value, + $Res Function(_$GetBlockWithTxHashesErrorImpl) then) = + __$$GetBlockWithTxHashesErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -271,12 +272,13 @@ abstract class _$$GetBlockWithTxHashesErrorCopyWith<$Res> { } /// @nodoc -class __$$GetBlockWithTxHashesErrorCopyWithImpl<$Res> +class __$$GetBlockWithTxHashesErrorImplCopyWithImpl<$Res> extends _$GetBlockWithTxHashesCopyWithImpl<$Res, - _$GetBlockWithTxHashesError> - implements _$$GetBlockWithTxHashesErrorCopyWith<$Res> { - __$$GetBlockWithTxHashesErrorCopyWithImpl(_$GetBlockWithTxHashesError _value, - $Res Function(_$GetBlockWithTxHashesError) _then) + _$GetBlockWithTxHashesErrorImpl> + implements _$$GetBlockWithTxHashesErrorImplCopyWith<$Res> { + __$$GetBlockWithTxHashesErrorImplCopyWithImpl( + _$GetBlockWithTxHashesErrorImpl _value, + $Res Function(_$GetBlockWithTxHashesErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -284,7 +286,7 @@ class __$$GetBlockWithTxHashesErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$GetBlockWithTxHashesError( + return _then(_$GetBlockWithTxHashesErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -303,12 +305,13 @@ class __$$GetBlockWithTxHashesErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetBlockWithTxHashesError implements GetBlockWithTxHashesError { - const _$GetBlockWithTxHashesError({required this.error, final String? $type}) +class _$GetBlockWithTxHashesErrorImpl implements GetBlockWithTxHashesError { + const _$GetBlockWithTxHashesErrorImpl( + {required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$GetBlockWithTxHashesError.fromJson(Map json) => - _$$GetBlockWithTxHashesErrorFromJson(json); + factory _$GetBlockWithTxHashesErrorImpl.fromJson(Map json) => + _$$GetBlockWithTxHashesErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -322,10 +325,10 @@ class _$GetBlockWithTxHashesError implements GetBlockWithTxHashesError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetBlockWithTxHashesError && + other is _$GetBlockWithTxHashesErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -336,9 +339,9 @@ class _$GetBlockWithTxHashesError implements GetBlockWithTxHashesError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetBlockWithTxHashesErrorCopyWith<_$GetBlockWithTxHashesError> - get copyWith => __$$GetBlockWithTxHashesErrorCopyWithImpl< - _$GetBlockWithTxHashesError>(this, _$identity); + _$$GetBlockWithTxHashesErrorImplCopyWith<_$GetBlockWithTxHashesErrorImpl> + get copyWith => __$$GetBlockWithTxHashesErrorImplCopyWithImpl< + _$GetBlockWithTxHashesErrorImpl>(this, _$identity); @override @optionalTypeArgs @@ -404,7 +407,7 @@ class _$GetBlockWithTxHashesError implements GetBlockWithTxHashesError { @override Map toJson() { - return _$$GetBlockWithTxHashesErrorToJson( + return _$$GetBlockWithTxHashesErrorImplToJson( this, ); } @@ -412,14 +415,14 @@ class _$GetBlockWithTxHashesError implements GetBlockWithTxHashesError { abstract class GetBlockWithTxHashesError implements GetBlockWithTxHashes { const factory GetBlockWithTxHashesError( - {required final JsonRpcApiError error}) = _$GetBlockWithTxHashesError; + {required final JsonRpcApiError error}) = _$GetBlockWithTxHashesErrorImpl; factory GetBlockWithTxHashesError.fromJson(Map json) = - _$GetBlockWithTxHashesError.fromJson; + _$GetBlockWithTxHashesErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$GetBlockWithTxHashesErrorCopyWith<_$GetBlockWithTxHashesError> + _$$GetBlockWithTxHashesErrorImplCopyWith<_$GetBlockWithTxHashesErrorImpl> get copyWith => throw _privateConstructorUsedError; } @@ -575,11 +578,11 @@ class _$BlockWithTxnHashesCopyWithImpl<$Res, $Val extends BlockWithTxnHashes> } /// @nodoc -abstract class _$$ResultingBlockCopyWith<$Res> +abstract class _$$ResultingBlockImplCopyWith<$Res> implements $BlockWithTxnHashesCopyWith<$Res> { - factory _$$ResultingBlockCopyWith( - _$ResultingBlock value, $Res Function(_$ResultingBlock) then) = - __$$ResultingBlockCopyWithImpl<$Res>; + factory _$$ResultingBlockImplCopyWith(_$ResultingBlockImpl value, + $Res Function(_$ResultingBlockImpl) then) = + __$$ResultingBlockImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -594,11 +597,11 @@ abstract class _$$ResultingBlockCopyWith<$Res> } /// @nodoc -class __$$ResultingBlockCopyWithImpl<$Res> - extends _$BlockWithTxnHashesCopyWithImpl<$Res, _$ResultingBlock> - implements _$$ResultingBlockCopyWith<$Res> { - __$$ResultingBlockCopyWithImpl( - _$ResultingBlock _value, $Res Function(_$ResultingBlock) _then) +class __$$ResultingBlockImplCopyWithImpl<$Res> + extends _$BlockWithTxnHashesCopyWithImpl<$Res, _$ResultingBlockImpl> + implements _$$ResultingBlockImplCopyWith<$Res> { + __$$ResultingBlockImplCopyWithImpl( + _$ResultingBlockImpl _value, $Res Function(_$ResultingBlockImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -613,7 +616,7 @@ class __$$ResultingBlockCopyWithImpl<$Res> Object? sequencerAddress = null, Object? transactions = null, }) { - return _then(_$ResultingBlock( + return _then(_$ResultingBlockImpl( status: null == status ? _value.status : status // ignore: cast_nullable_to_non_nullable @@ -652,8 +655,8 @@ class __$$ResultingBlockCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$ResultingBlock implements ResultingBlock { - const _$ResultingBlock( +class _$ResultingBlockImpl implements ResultingBlock { + const _$ResultingBlockImpl( {required this.status, required this.blockHash, required this.parentHash, @@ -666,8 +669,8 @@ class _$ResultingBlock implements ResultingBlock { : _transactions = transactions, $type = $type ?? 'resultingBlock'; - factory _$ResultingBlock.fromJson(Map json) => - _$$ResultingBlockFromJson(json); + factory _$ResultingBlockImpl.fromJson(Map json) => + _$$ResultingBlockImplFromJson(json); @override final String status; @@ -700,10 +703,10 @@ class _$ResultingBlock implements ResultingBlock { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$ResultingBlock && + other is _$ResultingBlockImpl && (identical(other.status, status) || other.status == status) && (identical(other.blockHash, blockHash) || other.blockHash == blockHash) && @@ -736,8 +739,9 @@ class _$ResultingBlock implements ResultingBlock { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$ResultingBlockCopyWith<_$ResultingBlock> get copyWith => - __$$ResultingBlockCopyWithImpl<_$ResultingBlock>(this, _$identity); + _$$ResultingBlockImplCopyWith<_$ResultingBlockImpl> get copyWith => + __$$ResultingBlockImplCopyWithImpl<_$ResultingBlockImpl>( + this, _$identity); @override @optionalTypeArgs @@ -839,7 +843,7 @@ class _$ResultingBlock implements ResultingBlock { @override Map toJson() { - return _$$ResultingBlockToJson( + return _$$ResultingBlockImplToJson( this, ); } @@ -854,10 +858,10 @@ abstract class ResultingBlock implements BlockWithTxnHashes { required final Felt newRoot, required final int timestamp, required final Felt sequencerAddress, - required final List transactions}) = _$ResultingBlock; + required final List transactions}) = _$ResultingBlockImpl; factory ResultingBlock.fromJson(Map json) = - _$ResultingBlock.fromJson; + _$ResultingBlockImpl.fromJson; String get status; Felt get blockHash; @@ -873,16 +877,16 @@ abstract class ResultingBlock implements BlockWithTxnHashes { List get transactions; @override @JsonKey(ignore: true) - _$$ResultingBlockCopyWith<_$ResultingBlock> get copyWith => + _$$ResultingBlockImplCopyWith<_$ResultingBlockImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$PendingBlockCopyWith<$Res> +abstract class _$$PendingBlockImplCopyWith<$Res> implements $BlockWithTxnHashesCopyWith<$Res> { - factory _$$PendingBlockCopyWith( - _$PendingBlock value, $Res Function(_$PendingBlock) then) = - __$$PendingBlockCopyWithImpl<$Res>; + factory _$$PendingBlockImplCopyWith( + _$PendingBlockImpl value, $Res Function(_$PendingBlockImpl) then) = + __$$PendingBlockImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -893,11 +897,11 @@ abstract class _$$PendingBlockCopyWith<$Res> } /// @nodoc -class __$$PendingBlockCopyWithImpl<$Res> - extends _$BlockWithTxnHashesCopyWithImpl<$Res, _$PendingBlock> - implements _$$PendingBlockCopyWith<$Res> { - __$$PendingBlockCopyWithImpl( - _$PendingBlock _value, $Res Function(_$PendingBlock) _then) +class __$$PendingBlockImplCopyWithImpl<$Res> + extends _$BlockWithTxnHashesCopyWithImpl<$Res, _$PendingBlockImpl> + implements _$$PendingBlockImplCopyWith<$Res> { + __$$PendingBlockImplCopyWithImpl( + _$PendingBlockImpl _value, $Res Function(_$PendingBlockImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -908,7 +912,7 @@ class __$$PendingBlockCopyWithImpl<$Res> Object? sequencerAddress = null, Object? parentHash = null, }) { - return _then(_$PendingBlock( + return _then(_$PendingBlockImpl( transactions: null == transactions ? _value._transactions : transactions // ignore: cast_nullable_to_non_nullable @@ -931,8 +935,8 @@ class __$$PendingBlockCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$PendingBlock implements PendingBlock { - const _$PendingBlock( +class _$PendingBlockImpl implements PendingBlock { + const _$PendingBlockImpl( {required final List transactions, required this.timestamp, required this.sequencerAddress, @@ -941,8 +945,8 @@ class _$PendingBlock implements PendingBlock { : _transactions = transactions, $type = $type ?? 'pendingBlock'; - factory _$PendingBlock.fromJson(Map json) => - _$$PendingBlockFromJson(json); + factory _$PendingBlockImpl.fromJson(Map json) => + _$$PendingBlockImplFromJson(json); final List _transactions; @override @@ -968,10 +972,10 @@ class _$PendingBlock implements PendingBlock { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$PendingBlock && + other is _$PendingBlockImpl && const DeepCollectionEquality() .equals(other._transactions, _transactions) && (identical(other.timestamp, timestamp) || @@ -994,8 +998,8 @@ class _$PendingBlock implements PendingBlock { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$PendingBlockCopyWith<_$PendingBlock> get copyWith => - __$$PendingBlockCopyWithImpl<_$PendingBlock>(this, _$identity); + _$$PendingBlockImplCopyWith<_$PendingBlockImpl> get copyWith => + __$$PendingBlockImplCopyWithImpl<_$PendingBlockImpl>(this, _$identity); @override @optionalTypeArgs @@ -1096,7 +1100,7 @@ class _$PendingBlock implements PendingBlock { @override Map toJson() { - return _$$PendingBlockToJson( + return _$$PendingBlockImplToJson( this, ); } @@ -1107,10 +1111,10 @@ abstract class PendingBlock implements BlockWithTxnHashes { {required final List transactions, required final int timestamp, required final Felt sequencerAddress, - required final Felt parentHash}) = _$PendingBlock; + required final Felt parentHash}) = _$PendingBlockImpl; factory PendingBlock.fromJson(Map json) = - _$PendingBlock.fromJson; + _$PendingBlockImpl.fromJson; @override List get transactions; @@ -1122,6 +1126,6 @@ abstract class PendingBlock implements BlockWithTxnHashes { Felt get parentHash; @override @JsonKey(ignore: true) - _$$PendingBlockCopyWith<_$PendingBlock> get copyWith => + _$$PendingBlockImplCopyWith<_$PendingBlockImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/get_block_with_tx_hashes.g.dart b/packages/starknet_provider/lib/src/model/get_block_with_tx_hashes.g.dart index 333b1d7f..394bb7f0 100644 --- a/packages/starknet_provider/lib/src/model/get_block_with_tx_hashes.g.dart +++ b/packages/starknet_provider/lib/src/model/get_block_with_tx_hashes.g.dart @@ -6,42 +6,42 @@ part of 'get_block_with_tx_hashes.dart'; // JsonSerializableGenerator // ************************************************************************** -_$GetBlockWithTxHashesResult _$$GetBlockWithTxHashesResultFromJson( +_$GetBlockWithTxHashesResultImpl _$$GetBlockWithTxHashesResultImplFromJson( Map json) => - _$GetBlockWithTxHashesResult( + _$GetBlockWithTxHashesResultImpl( BlockWithTxnHashes.fromJson(json['result'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetBlockWithTxHashesResultToJson( - _$GetBlockWithTxHashesResult instance) => +Map _$$GetBlockWithTxHashesResultImplToJson( + _$GetBlockWithTxHashesResultImpl instance) => { 'result': instance.result.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$GetBlockWithTxHashesError _$$GetBlockWithTxHashesErrorFromJson( +_$GetBlockWithTxHashesErrorImpl _$$GetBlockWithTxHashesErrorImplFromJson( Map json) => - _$GetBlockWithTxHashesError( + _$GetBlockWithTxHashesErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetBlockWithTxHashesErrorToJson( - _$GetBlockWithTxHashesError instance) => +Map _$$GetBlockWithTxHashesErrorImplToJson( + _$GetBlockWithTxHashesErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$ResultingBlock _$$ResultingBlockFromJson(Map json) => - _$ResultingBlock( +_$ResultingBlockImpl _$$ResultingBlockImplFromJson(Map json) => + _$ResultingBlockImpl( status: json['status'] as String, blockHash: Felt.fromJson(json['block_hash'] as String), parentHash: Felt.fromJson(json['parent_hash'] as String), - blockNumber: json['block_number'] as int, + blockNumber: (json['block_number'] as num).toInt(), newRoot: Felt.fromJson(json['new_root'] as String), - timestamp: json['timestamp'] as int, + timestamp: (json['timestamp'] as num).toInt(), sequencerAddress: Felt.fromJson(json['sequencer_address'] as String), transactions: (json['transactions'] as List) .map((e) => Felt.fromJson(e as String)) @@ -49,7 +49,8 @@ _$ResultingBlock _$$ResultingBlockFromJson(Map json) => $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$ResultingBlockToJson(_$ResultingBlock instance) => +Map _$$ResultingBlockImplToJson( + _$ResultingBlockImpl instance) => { 'status': instance.status, 'block_hash': instance.blockHash.toJson(), @@ -62,18 +63,18 @@ Map _$$ResultingBlockToJson(_$ResultingBlock instance) => 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$PendingBlock _$$PendingBlockFromJson(Map json) => - _$PendingBlock( +_$PendingBlockImpl _$$PendingBlockImplFromJson(Map json) => + _$PendingBlockImpl( transactions: (json['transactions'] as List) .map((e) => Felt.fromJson(e as String)) .toList(), - timestamp: json['timestamp'] as int, + timestamp: (json['timestamp'] as num).toInt(), sequencerAddress: Felt.fromJson(json['sequencer_address'] as String), parentHash: Felt.fromJson(json['parent_hash'] as String), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$PendingBlockToJson(_$PendingBlock instance) => +Map _$$PendingBlockImplToJson(_$PendingBlockImpl instance) => { 'transactions': instance.transactions.map((e) => e.toJson()).toList(), 'timestamp': instance.timestamp, diff --git a/packages/starknet_provider/lib/src/model/get_block_with_txs.freezed.dart b/packages/starknet_provider/lib/src/model/get_block_with_txs.freezed.dart index 361221e6..5f1dc616 100644 --- a/packages/starknet_provider/lib/src/model/get_block_with_txs.freezed.dart +++ b/packages/starknet_provider/lib/src/model/get_block_with_txs.freezed.dart @@ -12,7 +12,7 @@ part of 'get_block_with_txs.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); GetBlockWithTxs _$GetBlockWithTxsFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -92,10 +92,11 @@ class _$GetBlockWithTxsCopyWithImpl<$Res, $Val extends GetBlockWithTxs> } /// @nodoc -abstract class _$$GetBlockWithTxsResultCopyWith<$Res> { - factory _$$GetBlockWithTxsResultCopyWith(_$GetBlockWithTxsResult value, - $Res Function(_$GetBlockWithTxsResult) then) = - __$$GetBlockWithTxsResultCopyWithImpl<$Res>; +abstract class _$$GetBlockWithTxsResultImplCopyWith<$Res> { + factory _$$GetBlockWithTxsResultImplCopyWith( + _$GetBlockWithTxsResultImpl value, + $Res Function(_$GetBlockWithTxsResultImpl) then) = + __$$GetBlockWithTxsResultImplCopyWithImpl<$Res>; @useResult $Res call({BlockWithTxs result}); @@ -103,11 +104,11 @@ abstract class _$$GetBlockWithTxsResultCopyWith<$Res> { } /// @nodoc -class __$$GetBlockWithTxsResultCopyWithImpl<$Res> - extends _$GetBlockWithTxsCopyWithImpl<$Res, _$GetBlockWithTxsResult> - implements _$$GetBlockWithTxsResultCopyWith<$Res> { - __$$GetBlockWithTxsResultCopyWithImpl(_$GetBlockWithTxsResult _value, - $Res Function(_$GetBlockWithTxsResult) _then) +class __$$GetBlockWithTxsResultImplCopyWithImpl<$Res> + extends _$GetBlockWithTxsCopyWithImpl<$Res, _$GetBlockWithTxsResultImpl> + implements _$$GetBlockWithTxsResultImplCopyWith<$Res> { + __$$GetBlockWithTxsResultImplCopyWithImpl(_$GetBlockWithTxsResultImpl _value, + $Res Function(_$GetBlockWithTxsResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -115,7 +116,7 @@ class __$$GetBlockWithTxsResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$GetBlockWithTxsResult( + return _then(_$GetBlockWithTxsResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -134,12 +135,12 @@ class __$$GetBlockWithTxsResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetBlockWithTxsResult implements GetBlockWithTxsResult { - const _$GetBlockWithTxsResult({required this.result, final String? $type}) +class _$GetBlockWithTxsResultImpl implements GetBlockWithTxsResult { + const _$GetBlockWithTxsResultImpl({required this.result, final String? $type}) : $type = $type ?? 'block'; - factory _$GetBlockWithTxsResult.fromJson(Map json) => - _$$GetBlockWithTxsResultFromJson(json); + factory _$GetBlockWithTxsResultImpl.fromJson(Map json) => + _$$GetBlockWithTxsResultImplFromJson(json); @override final BlockWithTxs result; @@ -153,10 +154,10 @@ class _$GetBlockWithTxsResult implements GetBlockWithTxsResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetBlockWithTxsResult && + other is _$GetBlockWithTxsResultImpl && (identical(other.result, result) || other.result == result)); } @@ -167,9 +168,9 @@ class _$GetBlockWithTxsResult implements GetBlockWithTxsResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetBlockWithTxsResultCopyWith<_$GetBlockWithTxsResult> get copyWith => - __$$GetBlockWithTxsResultCopyWithImpl<_$GetBlockWithTxsResult>( - this, _$identity); + _$$GetBlockWithTxsResultImplCopyWith<_$GetBlockWithTxsResultImpl> + get copyWith => __$$GetBlockWithTxsResultImplCopyWithImpl< + _$GetBlockWithTxsResultImpl>(this, _$identity); @override @optionalTypeArgs @@ -235,7 +236,7 @@ class _$GetBlockWithTxsResult implements GetBlockWithTxsResult { @override Map toJson() { - return _$$GetBlockWithTxsResultToJson( + return _$$GetBlockWithTxsResultImplToJson( this, ); } @@ -243,22 +244,22 @@ class _$GetBlockWithTxsResult implements GetBlockWithTxsResult { abstract class GetBlockWithTxsResult implements GetBlockWithTxs { const factory GetBlockWithTxsResult({required final BlockWithTxs result}) = - _$GetBlockWithTxsResult; + _$GetBlockWithTxsResultImpl; factory GetBlockWithTxsResult.fromJson(Map json) = - _$GetBlockWithTxsResult.fromJson; + _$GetBlockWithTxsResultImpl.fromJson; BlockWithTxs get result; @JsonKey(ignore: true) - _$$GetBlockWithTxsResultCopyWith<_$GetBlockWithTxsResult> get copyWith => - throw _privateConstructorUsedError; + _$$GetBlockWithTxsResultImplCopyWith<_$GetBlockWithTxsResultImpl> + get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$GetBlockWithTxsErrorCopyWith<$Res> { - factory _$$GetBlockWithTxsErrorCopyWith(_$GetBlockWithTxsError value, - $Res Function(_$GetBlockWithTxsError) then) = - __$$GetBlockWithTxsErrorCopyWithImpl<$Res>; +abstract class _$$GetBlockWithTxsErrorImplCopyWith<$Res> { + factory _$$GetBlockWithTxsErrorImplCopyWith(_$GetBlockWithTxsErrorImpl value, + $Res Function(_$GetBlockWithTxsErrorImpl) then) = + __$$GetBlockWithTxsErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -266,11 +267,11 @@ abstract class _$$GetBlockWithTxsErrorCopyWith<$Res> { } /// @nodoc -class __$$GetBlockWithTxsErrorCopyWithImpl<$Res> - extends _$GetBlockWithTxsCopyWithImpl<$Res, _$GetBlockWithTxsError> - implements _$$GetBlockWithTxsErrorCopyWith<$Res> { - __$$GetBlockWithTxsErrorCopyWithImpl(_$GetBlockWithTxsError _value, - $Res Function(_$GetBlockWithTxsError) _then) +class __$$GetBlockWithTxsErrorImplCopyWithImpl<$Res> + extends _$GetBlockWithTxsCopyWithImpl<$Res, _$GetBlockWithTxsErrorImpl> + implements _$$GetBlockWithTxsErrorImplCopyWith<$Res> { + __$$GetBlockWithTxsErrorImplCopyWithImpl(_$GetBlockWithTxsErrorImpl _value, + $Res Function(_$GetBlockWithTxsErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -278,7 +279,7 @@ class __$$GetBlockWithTxsErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$GetBlockWithTxsError( + return _then(_$GetBlockWithTxsErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -297,12 +298,12 @@ class __$$GetBlockWithTxsErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetBlockWithTxsError implements GetBlockWithTxsError { - const _$GetBlockWithTxsError({required this.error, final String? $type}) +class _$GetBlockWithTxsErrorImpl implements GetBlockWithTxsError { + const _$GetBlockWithTxsErrorImpl({required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$GetBlockWithTxsError.fromJson(Map json) => - _$$GetBlockWithTxsErrorFromJson(json); + factory _$GetBlockWithTxsErrorImpl.fromJson(Map json) => + _$$GetBlockWithTxsErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -316,10 +317,10 @@ class _$GetBlockWithTxsError implements GetBlockWithTxsError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetBlockWithTxsError && + other is _$GetBlockWithTxsErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -330,9 +331,10 @@ class _$GetBlockWithTxsError implements GetBlockWithTxsError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetBlockWithTxsErrorCopyWith<_$GetBlockWithTxsError> get copyWith => - __$$GetBlockWithTxsErrorCopyWithImpl<_$GetBlockWithTxsError>( - this, _$identity); + _$$GetBlockWithTxsErrorImplCopyWith<_$GetBlockWithTxsErrorImpl> + get copyWith => + __$$GetBlockWithTxsErrorImplCopyWithImpl<_$GetBlockWithTxsErrorImpl>( + this, _$identity); @override @optionalTypeArgs @@ -398,7 +400,7 @@ class _$GetBlockWithTxsError implements GetBlockWithTxsError { @override Map toJson() { - return _$$GetBlockWithTxsErrorToJson( + return _$$GetBlockWithTxsErrorImplToJson( this, ); } @@ -406,15 +408,15 @@ class _$GetBlockWithTxsError implements GetBlockWithTxsError { abstract class GetBlockWithTxsError implements GetBlockWithTxs { const factory GetBlockWithTxsError({required final JsonRpcApiError error}) = - _$GetBlockWithTxsError; + _$GetBlockWithTxsErrorImpl; factory GetBlockWithTxsError.fromJson(Map json) = - _$GetBlockWithTxsError.fromJson; + _$GetBlockWithTxsErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$GetBlockWithTxsErrorCopyWith<_$GetBlockWithTxsError> get copyWith => - throw _privateConstructorUsedError; + _$$GetBlockWithTxsErrorImplCopyWith<_$GetBlockWithTxsErrorImpl> + get copyWith => throw _privateConstructorUsedError; } BlockWithTxs _$BlockWithTxsFromJson(Map json) { @@ -572,11 +574,11 @@ class _$BlockWithTxsCopyWithImpl<$Res, $Val extends BlockWithTxs> } /// @nodoc -abstract class _$$BlockWithTxsResponseCopyWith<$Res> +abstract class _$$BlockWithTxsResponseImplCopyWith<$Res> implements $BlockWithTxsCopyWith<$Res> { - factory _$$BlockWithTxsResponseCopyWith(_$BlockWithTxsResponse value, - $Res Function(_$BlockWithTxsResponse) then) = - __$$BlockWithTxsResponseCopyWithImpl<$Res>; + factory _$$BlockWithTxsResponseImplCopyWith(_$BlockWithTxsResponseImpl value, + $Res Function(_$BlockWithTxsResponseImpl) then) = + __$$BlockWithTxsResponseImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -591,11 +593,11 @@ abstract class _$$BlockWithTxsResponseCopyWith<$Res> } /// @nodoc -class __$$BlockWithTxsResponseCopyWithImpl<$Res> - extends _$BlockWithTxsCopyWithImpl<$Res, _$BlockWithTxsResponse> - implements _$$BlockWithTxsResponseCopyWith<$Res> { - __$$BlockWithTxsResponseCopyWithImpl(_$BlockWithTxsResponse _value, - $Res Function(_$BlockWithTxsResponse) _then) +class __$$BlockWithTxsResponseImplCopyWithImpl<$Res> + extends _$BlockWithTxsCopyWithImpl<$Res, _$BlockWithTxsResponseImpl> + implements _$$BlockWithTxsResponseImplCopyWith<$Res> { + __$$BlockWithTxsResponseImplCopyWithImpl(_$BlockWithTxsResponseImpl _value, + $Res Function(_$BlockWithTxsResponseImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -610,7 +612,7 @@ class __$$BlockWithTxsResponseCopyWithImpl<$Res> Object? timestamp = null, Object? sequencerAddress = null, }) { - return _then(_$BlockWithTxsResponse( + return _then(_$BlockWithTxsResponseImpl( status: null == status ? _value.status : status // ignore: cast_nullable_to_non_nullable @@ -649,8 +651,8 @@ class __$$BlockWithTxsResponseCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$BlockWithTxsResponse implements BlockWithTxsResponse { - const _$BlockWithTxsResponse( +class _$BlockWithTxsResponseImpl implements BlockWithTxsResponse { + const _$BlockWithTxsResponseImpl( {required this.status, required final List transactions, required this.blockHash, @@ -663,8 +665,8 @@ class _$BlockWithTxsResponse implements BlockWithTxsResponse { : _transactions = transactions, $type = $type ?? 'resultingBlock'; - factory _$BlockWithTxsResponse.fromJson(Map json) => - _$$BlockWithTxsResponseFromJson(json); + factory _$BlockWithTxsResponseImpl.fromJson(Map json) => + _$$BlockWithTxsResponseImplFromJson(json); @override final String status; @@ -702,10 +704,10 @@ class _$BlockWithTxsResponse implements BlockWithTxsResponse { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$BlockWithTxsResponse && + other is _$BlockWithTxsResponseImpl && (identical(other.status, status) || other.status == status) && const DeepCollectionEquality() .equals(other._transactions, _transactions) && @@ -738,9 +740,10 @@ class _$BlockWithTxsResponse implements BlockWithTxsResponse { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$BlockWithTxsResponseCopyWith<_$BlockWithTxsResponse> get copyWith => - __$$BlockWithTxsResponseCopyWithImpl<_$BlockWithTxsResponse>( - this, _$identity); + _$$BlockWithTxsResponseImplCopyWith<_$BlockWithTxsResponseImpl> + get copyWith => + __$$BlockWithTxsResponseImplCopyWithImpl<_$BlockWithTxsResponseImpl>( + this, _$identity); @override @optionalTypeArgs @@ -842,7 +845,7 @@ class _$BlockWithTxsResponse implements BlockWithTxsResponse { @override Map toJson() { - return _$$BlockWithTxsResponseToJson( + return _$$BlockWithTxsResponseImplToJson( this, ); } @@ -857,10 +860,10 @@ abstract class BlockWithTxsResponse implements BlockWithTxs { required final int blockNumber, required final Felt newRoot, required final int timestamp, - required final Felt sequencerAddress}) = _$BlockWithTxsResponse; + required final Felt sequencerAddress}) = _$BlockWithTxsResponseImpl; factory BlockWithTxsResponse.fromJson(Map json) = - _$BlockWithTxsResponse.fromJson; + _$BlockWithTxsResponseImpl.fromJson; String get status; @override //Start of BLOCK_BODY_WITH_TXS @@ -877,17 +880,17 @@ abstract class BlockWithTxsResponse implements BlockWithTxs { Felt get sequencerAddress; @override @JsonKey(ignore: true) - _$$BlockWithTxsResponseCopyWith<_$BlockWithTxsResponse> get copyWith => - throw _privateConstructorUsedError; + _$$BlockWithTxsResponseImplCopyWith<_$BlockWithTxsResponseImpl> + get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$PendingBlockWithTxsResultCopyWith<$Res> +abstract class _$$PendingBlockWithTxsResultImplCopyWith<$Res> implements $BlockWithTxsCopyWith<$Res> { - factory _$$PendingBlockWithTxsResultCopyWith( - _$PendingBlockWithTxsResult value, - $Res Function(_$PendingBlockWithTxsResult) then) = - __$$PendingBlockWithTxsResultCopyWithImpl<$Res>; + factory _$$PendingBlockWithTxsResultImplCopyWith( + _$PendingBlockWithTxsResultImpl value, + $Res Function(_$PendingBlockWithTxsResultImpl) then) = + __$$PendingBlockWithTxsResultImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -898,11 +901,12 @@ abstract class _$$PendingBlockWithTxsResultCopyWith<$Res> } /// @nodoc -class __$$PendingBlockWithTxsResultCopyWithImpl<$Res> - extends _$BlockWithTxsCopyWithImpl<$Res, _$PendingBlockWithTxsResult> - implements _$$PendingBlockWithTxsResultCopyWith<$Res> { - __$$PendingBlockWithTxsResultCopyWithImpl(_$PendingBlockWithTxsResult _value, - $Res Function(_$PendingBlockWithTxsResult) _then) +class __$$PendingBlockWithTxsResultImplCopyWithImpl<$Res> + extends _$BlockWithTxsCopyWithImpl<$Res, _$PendingBlockWithTxsResultImpl> + implements _$$PendingBlockWithTxsResultImplCopyWith<$Res> { + __$$PendingBlockWithTxsResultImplCopyWithImpl( + _$PendingBlockWithTxsResultImpl _value, + $Res Function(_$PendingBlockWithTxsResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -913,7 +917,7 @@ class __$$PendingBlockWithTxsResultCopyWithImpl<$Res> Object? sequencerAddress = null, Object? blockHash = null, }) { - return _then(_$PendingBlockWithTxsResult( + return _then(_$PendingBlockWithTxsResultImpl( transactions: null == transactions ? _value._transactions : transactions // ignore: cast_nullable_to_non_nullable @@ -936,8 +940,8 @@ class __$$PendingBlockWithTxsResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$PendingBlockWithTxsResult implements PendingBlockWithTxsResult { - const _$PendingBlockWithTxsResult( +class _$PendingBlockWithTxsResultImpl implements PendingBlockWithTxsResult { + const _$PendingBlockWithTxsResultImpl( {required final List transactions, required this.timestamp, required this.sequencerAddress, @@ -946,8 +950,8 @@ class _$PendingBlockWithTxsResult implements PendingBlockWithTxsResult { : _transactions = transactions, $type = $type ?? 'pendingBlock'; - factory _$PendingBlockWithTxsResult.fromJson(Map json) => - _$$PendingBlockWithTxsResultFromJson(json); + factory _$PendingBlockWithTxsResultImpl.fromJson(Map json) => + _$$PendingBlockWithTxsResultImplFromJson(json); // Start of BLOCK_BODY_WITH_TXS final List _transactions; @@ -976,10 +980,10 @@ class _$PendingBlockWithTxsResult implements PendingBlockWithTxsResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$PendingBlockWithTxsResult && + other is _$PendingBlockWithTxsResultImpl && const DeepCollectionEquality() .equals(other._transactions, _transactions) && (identical(other.timestamp, timestamp) || @@ -1002,9 +1006,9 @@ class _$PendingBlockWithTxsResult implements PendingBlockWithTxsResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$PendingBlockWithTxsResultCopyWith<_$PendingBlockWithTxsResult> - get copyWith => __$$PendingBlockWithTxsResultCopyWithImpl< - _$PendingBlockWithTxsResult>(this, _$identity); + _$$PendingBlockWithTxsResultImplCopyWith<_$PendingBlockWithTxsResultImpl> + get copyWith => __$$PendingBlockWithTxsResultImplCopyWithImpl< + _$PendingBlockWithTxsResultImpl>(this, _$identity); @override @optionalTypeArgs @@ -1104,7 +1108,7 @@ class _$PendingBlockWithTxsResult implements PendingBlockWithTxsResult { @override Map toJson() { - return _$$PendingBlockWithTxsResultToJson( + return _$$PendingBlockWithTxsResultImplToJson( this, ); } @@ -1115,10 +1119,10 @@ abstract class PendingBlockWithTxsResult implements BlockWithTxs { {required final List transactions, required final int timestamp, required final Felt sequencerAddress, - required final Felt blockHash}) = _$PendingBlockWithTxsResult; + required final Felt blockHash}) = _$PendingBlockWithTxsResultImpl; factory PendingBlockWithTxsResult.fromJson(Map json) = - _$PendingBlockWithTxsResult.fromJson; + _$PendingBlockWithTxsResultImpl.fromJson; @override // Start of BLOCK_BODY_WITH_TXS List get transactions; @@ -1130,6 +1134,6 @@ abstract class PendingBlockWithTxsResult implements BlockWithTxs { Felt get blockHash; @override @JsonKey(ignore: true) - _$$PendingBlockWithTxsResultCopyWith<_$PendingBlockWithTxsResult> + _$$PendingBlockWithTxsResultImplCopyWith<_$PendingBlockWithTxsResultImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/get_block_with_txs.g.dart b/packages/starknet_provider/lib/src/model/get_block_with_txs.g.dart index c4eaed39..079cae90 100644 --- a/packages/starknet_provider/lib/src/model/get_block_with_txs.g.dart +++ b/packages/starknet_provider/lib/src/model/get_block_with_txs.g.dart @@ -6,52 +6,52 @@ part of 'get_block_with_txs.dart'; // JsonSerializableGenerator // ************************************************************************** -_$GetBlockWithTxsResult _$$GetBlockWithTxsResultFromJson( +_$GetBlockWithTxsResultImpl _$$GetBlockWithTxsResultImplFromJson( Map json) => - _$GetBlockWithTxsResult( + _$GetBlockWithTxsResultImpl( result: BlockWithTxs.fromJson(json['result'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetBlockWithTxsResultToJson( - _$GetBlockWithTxsResult instance) => +Map _$$GetBlockWithTxsResultImplToJson( + _$GetBlockWithTxsResultImpl instance) => { 'result': instance.result.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$GetBlockWithTxsError _$$GetBlockWithTxsErrorFromJson( +_$GetBlockWithTxsErrorImpl _$$GetBlockWithTxsErrorImplFromJson( Map json) => - _$GetBlockWithTxsError( + _$GetBlockWithTxsErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetBlockWithTxsErrorToJson( - _$GetBlockWithTxsError instance) => +Map _$$GetBlockWithTxsErrorImplToJson( + _$GetBlockWithTxsErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$BlockWithTxsResponse _$$BlockWithTxsResponseFromJson( +_$BlockWithTxsResponseImpl _$$BlockWithTxsResponseImplFromJson( Map json) => - _$BlockWithTxsResponse( + _$BlockWithTxsResponseImpl( status: json['status'] as String, transactions: (json['transactions'] as List) .map((e) => Txn.fromJson(e as Map)) .toList(), blockHash: Felt.fromJson(json['block_hash'] as String), parentHash: Felt.fromJson(json['parent_hash'] as String), - blockNumber: json['block_number'] as int, + blockNumber: (json['block_number'] as num).toInt(), newRoot: Felt.fromJson(json['new_root'] as String), - timestamp: json['timestamp'] as int, + timestamp: (json['timestamp'] as num).toInt(), sequencerAddress: Felt.fromJson(json['sequencer_address'] as String), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$BlockWithTxsResponseToJson( - _$BlockWithTxsResponse instance) => +Map _$$BlockWithTxsResponseImplToJson( + _$BlockWithTxsResponseImpl instance) => { 'status': instance.status, 'transactions': instance.transactions.map((e) => e.toJson()).toList(), @@ -64,20 +64,20 @@ Map _$$BlockWithTxsResponseToJson( 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$PendingBlockWithTxsResult _$$PendingBlockWithTxsResultFromJson( +_$PendingBlockWithTxsResultImpl _$$PendingBlockWithTxsResultImplFromJson( Map json) => - _$PendingBlockWithTxsResult( + _$PendingBlockWithTxsResultImpl( transactions: (json['transactions'] as List) .map((e) => Txn.fromJson(e as Map)) .toList(), - timestamp: json['timestamp'] as int, + timestamp: (json['timestamp'] as num).toInt(), sequencerAddress: Felt.fromJson(json['sequencer_address'] as String), blockHash: Felt.fromJson(json['block_hash'] as String), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$PendingBlockWithTxsResultToJson( - _$PendingBlockWithTxsResult instance) => +Map _$$PendingBlockWithTxsResultImplToJson( + _$PendingBlockWithTxsResultImpl instance) => { 'transactions': instance.transactions.map((e) => e.toJson()).toList(), 'timestamp': instance.timestamp, diff --git a/packages/starknet_provider/lib/src/model/get_class.freezed.dart b/packages/starknet_provider/lib/src/model/get_class.freezed.dart index 3f7ba52c..e8c7910d 100644 --- a/packages/starknet_provider/lib/src/model/get_class.freezed.dart +++ b/packages/starknet_provider/lib/src/model/get_class.freezed.dart @@ -12,7 +12,7 @@ part of 'get_class.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); GetClass _$GetClassFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -91,20 +91,20 @@ class _$GetClassCopyWithImpl<$Res, $Val extends GetClass> } /// @nodoc -abstract class _$$_GetClassResultCopyWith<$Res> { - factory _$$_GetClassResultCopyWith( - _$_GetClassResult value, $Res Function(_$_GetClassResult) then) = - __$$_GetClassResultCopyWithImpl<$Res>; +abstract class _$$GetClassResultImplCopyWith<$Res> { + factory _$$GetClassResultImplCopyWith(_$GetClassResultImpl value, + $Res Function(_$GetClassResultImpl) then) = + __$$GetClassResultImplCopyWithImpl<$Res>; @useResult $Res call({IContractClass result}); } /// @nodoc -class __$$_GetClassResultCopyWithImpl<$Res> - extends _$GetClassCopyWithImpl<$Res, _$_GetClassResult> - implements _$$_GetClassResultCopyWith<$Res> { - __$$_GetClassResultCopyWithImpl( - _$_GetClassResult _value, $Res Function(_$_GetClassResult) _then) +class __$$GetClassResultImplCopyWithImpl<$Res> + extends _$GetClassCopyWithImpl<$Res, _$GetClassResultImpl> + implements _$$GetClassResultImplCopyWith<$Res> { + __$$GetClassResultImplCopyWithImpl( + _$GetClassResultImpl _value, $Res Function(_$GetClassResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -112,7 +112,7 @@ class __$$_GetClassResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$_GetClassResult( + return _then(_$GetClassResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -123,12 +123,12 @@ class __$$_GetClassResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_GetClassResult implements _GetClassResult { - const _$_GetClassResult({required this.result, final String? $type}) +class _$GetClassResultImpl implements _GetClassResult { + const _$GetClassResultImpl({required this.result, final String? $type}) : $type = $type ?? 'result'; - factory _$_GetClassResult.fromJson(Map json) => - _$$_GetClassResultFromJson(json); + factory _$GetClassResultImpl.fromJson(Map json) => + _$$GetClassResultImplFromJson(json); @override final IContractClass result; @@ -142,10 +142,10 @@ class _$_GetClassResult implements _GetClassResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_GetClassResult && + other is _$GetClassResultImpl && (identical(other.result, result) || other.result == result)); } @@ -156,8 +156,9 @@ class _$_GetClassResult implements _GetClassResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_GetClassResultCopyWith<_$_GetClassResult> get copyWith => - __$$_GetClassResultCopyWithImpl<_$_GetClassResult>(this, _$identity); + _$$GetClassResultImplCopyWith<_$GetClassResultImpl> get copyWith => + __$$GetClassResultImplCopyWithImpl<_$GetClassResultImpl>( + this, _$identity); @override @optionalTypeArgs @@ -223,7 +224,7 @@ class _$_GetClassResult implements _GetClassResult { @override Map toJson() { - return _$$_GetClassResultToJson( + return _$$GetClassResultImplToJson( this, ); } @@ -231,22 +232,22 @@ class _$_GetClassResult implements _GetClassResult { abstract class _GetClassResult implements GetClass { const factory _GetClassResult({required final IContractClass result}) = - _$_GetClassResult; + _$GetClassResultImpl; factory _GetClassResult.fromJson(Map json) = - _$_GetClassResult.fromJson; + _$GetClassResultImpl.fromJson; IContractClass get result; @JsonKey(ignore: true) - _$$_GetClassResultCopyWith<_$_GetClassResult> get copyWith => + _$$GetClassResultImplCopyWith<_$GetClassResultImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$_GetClassErrorCopyWith<$Res> { - factory _$$_GetClassErrorCopyWith( - _$_GetClassError value, $Res Function(_$_GetClassError) then) = - __$$_GetClassErrorCopyWithImpl<$Res>; +abstract class _$$GetClassErrorImplCopyWith<$Res> { + factory _$$GetClassErrorImplCopyWith( + _$GetClassErrorImpl value, $Res Function(_$GetClassErrorImpl) then) = + __$$GetClassErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -254,11 +255,11 @@ abstract class _$$_GetClassErrorCopyWith<$Res> { } /// @nodoc -class __$$_GetClassErrorCopyWithImpl<$Res> - extends _$GetClassCopyWithImpl<$Res, _$_GetClassError> - implements _$$_GetClassErrorCopyWith<$Res> { - __$$_GetClassErrorCopyWithImpl( - _$_GetClassError _value, $Res Function(_$_GetClassError) _then) +class __$$GetClassErrorImplCopyWithImpl<$Res> + extends _$GetClassCopyWithImpl<$Res, _$GetClassErrorImpl> + implements _$$GetClassErrorImplCopyWith<$Res> { + __$$GetClassErrorImplCopyWithImpl( + _$GetClassErrorImpl _value, $Res Function(_$GetClassErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -266,7 +267,7 @@ class __$$_GetClassErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$_GetClassError( + return _then(_$GetClassErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -285,12 +286,12 @@ class __$$_GetClassErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_GetClassError implements _GetClassError { - const _$_GetClassError({required this.error, final String? $type}) +class _$GetClassErrorImpl implements _GetClassError { + const _$GetClassErrorImpl({required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$_GetClassError.fromJson(Map json) => - _$$_GetClassErrorFromJson(json); + factory _$GetClassErrorImpl.fromJson(Map json) => + _$$GetClassErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -304,10 +305,10 @@ class _$_GetClassError implements _GetClassError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_GetClassError && + other is _$GetClassErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -318,8 +319,8 @@ class _$_GetClassError implements _GetClassError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_GetClassErrorCopyWith<_$_GetClassError> get copyWith => - __$$_GetClassErrorCopyWithImpl<_$_GetClassError>(this, _$identity); + _$$GetClassErrorImplCopyWith<_$GetClassErrorImpl> get copyWith => + __$$GetClassErrorImplCopyWithImpl<_$GetClassErrorImpl>(this, _$identity); @override @optionalTypeArgs @@ -385,7 +386,7 @@ class _$_GetClassError implements _GetClassError { @override Map toJson() { - return _$$_GetClassErrorToJson( + return _$$GetClassErrorImplToJson( this, ); } @@ -393,13 +394,13 @@ class _$_GetClassError implements _GetClassError { abstract class _GetClassError implements GetClass { const factory _GetClassError({required final JsonRpcApiError error}) = - _$_GetClassError; + _$GetClassErrorImpl; factory _GetClassError.fromJson(Map json) = - _$_GetClassError.fromJson; + _$GetClassErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$_GetClassErrorCopyWith<_$_GetClassError> get copyWith => + _$$GetClassErrorImplCopyWith<_$GetClassErrorImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/get_class.g.dart b/packages/starknet_provider/lib/src/model/get_class.g.dart index 7e2b0c56..769a57db 100644 --- a/packages/starknet_provider/lib/src/model/get_class.g.dart +++ b/packages/starknet_provider/lib/src/model/get_class.g.dart @@ -6,25 +6,26 @@ part of 'get_class.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_GetClassResult _$$_GetClassResultFromJson(Map json) => - _$_GetClassResult( +_$GetClassResultImpl _$$GetClassResultImplFromJson(Map json) => + _$GetClassResultImpl( result: IContractClass.fromJson(json['result'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$_GetClassResultToJson(_$_GetClassResult instance) => +Map _$$GetClassResultImplToJson( + _$GetClassResultImpl instance) => { 'result': instance.result.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$_GetClassError _$$_GetClassErrorFromJson(Map json) => - _$_GetClassError( +_$GetClassErrorImpl _$$GetClassErrorImplFromJson(Map json) => + _$GetClassErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$_GetClassErrorToJson(_$_GetClassError instance) => +Map _$$GetClassErrorImplToJson(_$GetClassErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, diff --git a/packages/starknet_provider/lib/src/model/get_class_hash_at.freezed.dart b/packages/starknet_provider/lib/src/model/get_class_hash_at.freezed.dart index fd505acc..74de3980 100644 --- a/packages/starknet_provider/lib/src/model/get_class_hash_at.freezed.dart +++ b/packages/starknet_provider/lib/src/model/get_class_hash_at.freezed.dart @@ -12,7 +12,7 @@ part of 'get_class_hash_at.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); GetClassHashAt _$GetClassHashAtFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -92,20 +92,20 @@ class _$GetClassHashAtCopyWithImpl<$Res, $Val extends GetClassHashAt> } /// @nodoc -abstract class _$$GetClassHashAtResultCopyWith<$Res> { - factory _$$GetClassHashAtResultCopyWith(_$GetClassHashAtResult value, - $Res Function(_$GetClassHashAtResult) then) = - __$$GetClassHashAtResultCopyWithImpl<$Res>; +abstract class _$$GetClassHashAtResultImplCopyWith<$Res> { + factory _$$GetClassHashAtResultImplCopyWith(_$GetClassHashAtResultImpl value, + $Res Function(_$GetClassHashAtResultImpl) then) = + __$$GetClassHashAtResultImplCopyWithImpl<$Res>; @useResult $Res call({Felt result}); } /// @nodoc -class __$$GetClassHashAtResultCopyWithImpl<$Res> - extends _$GetClassHashAtCopyWithImpl<$Res, _$GetClassHashAtResult> - implements _$$GetClassHashAtResultCopyWith<$Res> { - __$$GetClassHashAtResultCopyWithImpl(_$GetClassHashAtResult _value, - $Res Function(_$GetClassHashAtResult) _then) +class __$$GetClassHashAtResultImplCopyWithImpl<$Res> + extends _$GetClassHashAtCopyWithImpl<$Res, _$GetClassHashAtResultImpl> + implements _$$GetClassHashAtResultImplCopyWith<$Res> { + __$$GetClassHashAtResultImplCopyWithImpl(_$GetClassHashAtResultImpl _value, + $Res Function(_$GetClassHashAtResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -113,7 +113,7 @@ class __$$GetClassHashAtResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$GetClassHashAtResult( + return _then(_$GetClassHashAtResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -124,12 +124,12 @@ class __$$GetClassHashAtResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetClassHashAtResult implements GetClassHashAtResult { - const _$GetClassHashAtResult({required this.result, final String? $type}) +class _$GetClassHashAtResultImpl implements GetClassHashAtResult { + const _$GetClassHashAtResultImpl({required this.result, final String? $type}) : $type = $type ?? 'result'; - factory _$GetClassHashAtResult.fromJson(Map json) => - _$$GetClassHashAtResultFromJson(json); + factory _$GetClassHashAtResultImpl.fromJson(Map json) => + _$$GetClassHashAtResultImplFromJson(json); @override final Felt result; @@ -143,10 +143,10 @@ class _$GetClassHashAtResult implements GetClassHashAtResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetClassHashAtResult && + other is _$GetClassHashAtResultImpl && (identical(other.result, result) || other.result == result)); } @@ -157,9 +157,10 @@ class _$GetClassHashAtResult implements GetClassHashAtResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetClassHashAtResultCopyWith<_$GetClassHashAtResult> get copyWith => - __$$GetClassHashAtResultCopyWithImpl<_$GetClassHashAtResult>( - this, _$identity); + _$$GetClassHashAtResultImplCopyWith<_$GetClassHashAtResultImpl> + get copyWith => + __$$GetClassHashAtResultImplCopyWithImpl<_$GetClassHashAtResultImpl>( + this, _$identity); @override @optionalTypeArgs @@ -225,7 +226,7 @@ class _$GetClassHashAtResult implements GetClassHashAtResult { @override Map toJson() { - return _$$GetClassHashAtResultToJson( + return _$$GetClassHashAtResultImplToJson( this, ); } @@ -233,22 +234,22 @@ class _$GetClassHashAtResult implements GetClassHashAtResult { abstract class GetClassHashAtResult implements GetClassHashAt { const factory GetClassHashAtResult({required final Felt result}) = - _$GetClassHashAtResult; + _$GetClassHashAtResultImpl; factory GetClassHashAtResult.fromJson(Map json) = - _$GetClassHashAtResult.fromJson; + _$GetClassHashAtResultImpl.fromJson; Felt get result; @JsonKey(ignore: true) - _$$GetClassHashAtResultCopyWith<_$GetClassHashAtResult> get copyWith => - throw _privateConstructorUsedError; + _$$GetClassHashAtResultImplCopyWith<_$GetClassHashAtResultImpl> + get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$GetClassHashAtErrorCopyWith<$Res> { - factory _$$GetClassHashAtErrorCopyWith(_$GetClassHashAtError value, - $Res Function(_$GetClassHashAtError) then) = - __$$GetClassHashAtErrorCopyWithImpl<$Res>; +abstract class _$$GetClassHashAtErrorImplCopyWith<$Res> { + factory _$$GetClassHashAtErrorImplCopyWith(_$GetClassHashAtErrorImpl value, + $Res Function(_$GetClassHashAtErrorImpl) then) = + __$$GetClassHashAtErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -256,11 +257,11 @@ abstract class _$$GetClassHashAtErrorCopyWith<$Res> { } /// @nodoc -class __$$GetClassHashAtErrorCopyWithImpl<$Res> - extends _$GetClassHashAtCopyWithImpl<$Res, _$GetClassHashAtError> - implements _$$GetClassHashAtErrorCopyWith<$Res> { - __$$GetClassHashAtErrorCopyWithImpl( - _$GetClassHashAtError _value, $Res Function(_$GetClassHashAtError) _then) +class __$$GetClassHashAtErrorImplCopyWithImpl<$Res> + extends _$GetClassHashAtCopyWithImpl<$Res, _$GetClassHashAtErrorImpl> + implements _$$GetClassHashAtErrorImplCopyWith<$Res> { + __$$GetClassHashAtErrorImplCopyWithImpl(_$GetClassHashAtErrorImpl _value, + $Res Function(_$GetClassHashAtErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -268,7 +269,7 @@ class __$$GetClassHashAtErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$GetClassHashAtError( + return _then(_$GetClassHashAtErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -287,12 +288,12 @@ class __$$GetClassHashAtErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetClassHashAtError implements GetClassHashAtError { - const _$GetClassHashAtError({required this.error, final String? $type}) +class _$GetClassHashAtErrorImpl implements GetClassHashAtError { + const _$GetClassHashAtErrorImpl({required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$GetClassHashAtError.fromJson(Map json) => - _$$GetClassHashAtErrorFromJson(json); + factory _$GetClassHashAtErrorImpl.fromJson(Map json) => + _$$GetClassHashAtErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -306,10 +307,10 @@ class _$GetClassHashAtError implements GetClassHashAtError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetClassHashAtError && + other is _$GetClassHashAtErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -320,8 +321,8 @@ class _$GetClassHashAtError implements GetClassHashAtError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetClassHashAtErrorCopyWith<_$GetClassHashAtError> get copyWith => - __$$GetClassHashAtErrorCopyWithImpl<_$GetClassHashAtError>( + _$$GetClassHashAtErrorImplCopyWith<_$GetClassHashAtErrorImpl> get copyWith => + __$$GetClassHashAtErrorImplCopyWithImpl<_$GetClassHashAtErrorImpl>( this, _$identity); @override @@ -388,7 +389,7 @@ class _$GetClassHashAtError implements GetClassHashAtError { @override Map toJson() { - return _$$GetClassHashAtErrorToJson( + return _$$GetClassHashAtErrorImplToJson( this, ); } @@ -396,13 +397,13 @@ class _$GetClassHashAtError implements GetClassHashAtError { abstract class GetClassHashAtError implements GetClassHashAt { const factory GetClassHashAtError({required final JsonRpcApiError error}) = - _$GetClassHashAtError; + _$GetClassHashAtErrorImpl; factory GetClassHashAtError.fromJson(Map json) = - _$GetClassHashAtError.fromJson; + _$GetClassHashAtErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$GetClassHashAtErrorCopyWith<_$GetClassHashAtError> get copyWith => + _$$GetClassHashAtErrorImplCopyWith<_$GetClassHashAtErrorImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/get_class_hash_at.g.dart b/packages/starknet_provider/lib/src/model/get_class_hash_at.g.dart index 6c6e2157..93b6e1d5 100644 --- a/packages/starknet_provider/lib/src/model/get_class_hash_at.g.dart +++ b/packages/starknet_provider/lib/src/model/get_class_hash_at.g.dart @@ -6,29 +6,29 @@ part of 'get_class_hash_at.dart'; // JsonSerializableGenerator // ************************************************************************** -_$GetClassHashAtResult _$$GetClassHashAtResultFromJson( +_$GetClassHashAtResultImpl _$$GetClassHashAtResultImplFromJson( Map json) => - _$GetClassHashAtResult( + _$GetClassHashAtResultImpl( result: Felt.fromJson(json['result'] as String), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetClassHashAtResultToJson( - _$GetClassHashAtResult instance) => +Map _$$GetClassHashAtResultImplToJson( + _$GetClassHashAtResultImpl instance) => { 'result': instance.result.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$GetClassHashAtError _$$GetClassHashAtErrorFromJson( +_$GetClassHashAtErrorImpl _$$GetClassHashAtErrorImplFromJson( Map json) => - _$GetClassHashAtError( + _$GetClassHashAtErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetClassHashAtErrorToJson( - _$GetClassHashAtError instance) => +Map _$$GetClassHashAtErrorImplToJson( + _$GetClassHashAtErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, diff --git a/packages/starknet_provider/lib/src/model/get_events.dart b/packages/starknet_provider/lib/src/model/get_events.dart index 5a06154e..6a625614 100644 --- a/packages/starknet_provider/lib/src/model/get_events.dart +++ b/packages/starknet_provider/lib/src/model/get_events.dart @@ -1,3 +1,5 @@ +// ignore_for_file: invalid_annotation_target + import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:starknet/starknet.dart'; import 'package:starknet_provider/starknet_provider.dart'; diff --git a/packages/starknet_provider/lib/src/model/get_events.freezed.dart b/packages/starknet_provider/lib/src/model/get_events.freezed.dart index 2c6c1d6e..b919acf1 100644 --- a/packages/starknet_provider/lib/src/model/get_events.freezed.dart +++ b/packages/starknet_provider/lib/src/model/get_events.freezed.dart @@ -12,7 +12,7 @@ part of 'get_events.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); GetEvents _$GetEventsFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -91,10 +91,10 @@ class _$GetEventsCopyWithImpl<$Res, $Val extends GetEvents> } /// @nodoc -abstract class _$$GetEventsResultCopyWith<$Res> { - factory _$$GetEventsResultCopyWith( - _$GetEventsResult value, $Res Function(_$GetEventsResult) then) = - __$$GetEventsResultCopyWithImpl<$Res>; +abstract class _$$GetEventsResultImplCopyWith<$Res> { + factory _$$GetEventsResultImplCopyWith(_$GetEventsResultImpl value, + $Res Function(_$GetEventsResultImpl) then) = + __$$GetEventsResultImplCopyWithImpl<$Res>; @useResult $Res call({GetEventsResponse result}); @@ -102,11 +102,11 @@ abstract class _$$GetEventsResultCopyWith<$Res> { } /// @nodoc -class __$$GetEventsResultCopyWithImpl<$Res> - extends _$GetEventsCopyWithImpl<$Res, _$GetEventsResult> - implements _$$GetEventsResultCopyWith<$Res> { - __$$GetEventsResultCopyWithImpl( - _$GetEventsResult _value, $Res Function(_$GetEventsResult) _then) +class __$$GetEventsResultImplCopyWithImpl<$Res> + extends _$GetEventsCopyWithImpl<$Res, _$GetEventsResultImpl> + implements _$$GetEventsResultImplCopyWith<$Res> { + __$$GetEventsResultImplCopyWithImpl( + _$GetEventsResultImpl _value, $Res Function(_$GetEventsResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -114,7 +114,7 @@ class __$$GetEventsResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$GetEventsResult( + return _then(_$GetEventsResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -133,12 +133,12 @@ class __$$GetEventsResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetEventsResult implements GetEventsResult { - const _$GetEventsResult({required this.result, final String? $type}) +class _$GetEventsResultImpl implements GetEventsResult { + const _$GetEventsResultImpl({required this.result, final String? $type}) : $type = $type ?? 'result'; - factory _$GetEventsResult.fromJson(Map json) => - _$$GetEventsResultFromJson(json); + factory _$GetEventsResultImpl.fromJson(Map json) => + _$$GetEventsResultImplFromJson(json); @override final GetEventsResponse result; @@ -152,10 +152,10 @@ class _$GetEventsResult implements GetEventsResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetEventsResult && + other is _$GetEventsResultImpl && (identical(other.result, result) || other.result == result)); } @@ -166,8 +166,9 @@ class _$GetEventsResult implements GetEventsResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetEventsResultCopyWith<_$GetEventsResult> get copyWith => - __$$GetEventsResultCopyWithImpl<_$GetEventsResult>(this, _$identity); + _$$GetEventsResultImplCopyWith<_$GetEventsResultImpl> get copyWith => + __$$GetEventsResultImplCopyWithImpl<_$GetEventsResultImpl>( + this, _$identity); @override @optionalTypeArgs @@ -233,7 +234,7 @@ class _$GetEventsResult implements GetEventsResult { @override Map toJson() { - return _$$GetEventsResultToJson( + return _$$GetEventsResultImplToJson( this, ); } @@ -241,22 +242,22 @@ class _$GetEventsResult implements GetEventsResult { abstract class GetEventsResult implements GetEvents { const factory GetEventsResult({required final GetEventsResponse result}) = - _$GetEventsResult; + _$GetEventsResultImpl; factory GetEventsResult.fromJson(Map json) = - _$GetEventsResult.fromJson; + _$GetEventsResultImpl.fromJson; GetEventsResponse get result; @JsonKey(ignore: true) - _$$GetEventsResultCopyWith<_$GetEventsResult> get copyWith => + _$$GetEventsResultImplCopyWith<_$GetEventsResultImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$GetEventsErrorCopyWith<$Res> { - factory _$$GetEventsErrorCopyWith( - _$GetEventsError value, $Res Function(_$GetEventsError) then) = - __$$GetEventsErrorCopyWithImpl<$Res>; +abstract class _$$GetEventsErrorImplCopyWith<$Res> { + factory _$$GetEventsErrorImplCopyWith(_$GetEventsErrorImpl value, + $Res Function(_$GetEventsErrorImpl) then) = + __$$GetEventsErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -264,11 +265,11 @@ abstract class _$$GetEventsErrorCopyWith<$Res> { } /// @nodoc -class __$$GetEventsErrorCopyWithImpl<$Res> - extends _$GetEventsCopyWithImpl<$Res, _$GetEventsError> - implements _$$GetEventsErrorCopyWith<$Res> { - __$$GetEventsErrorCopyWithImpl( - _$GetEventsError _value, $Res Function(_$GetEventsError) _then) +class __$$GetEventsErrorImplCopyWithImpl<$Res> + extends _$GetEventsCopyWithImpl<$Res, _$GetEventsErrorImpl> + implements _$$GetEventsErrorImplCopyWith<$Res> { + __$$GetEventsErrorImplCopyWithImpl( + _$GetEventsErrorImpl _value, $Res Function(_$GetEventsErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -276,7 +277,7 @@ class __$$GetEventsErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$GetEventsError( + return _then(_$GetEventsErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -295,12 +296,12 @@ class __$$GetEventsErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetEventsError implements GetEventsError { - const _$GetEventsError({required this.error, final String? $type}) +class _$GetEventsErrorImpl implements GetEventsError { + const _$GetEventsErrorImpl({required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$GetEventsError.fromJson(Map json) => - _$$GetEventsErrorFromJson(json); + factory _$GetEventsErrorImpl.fromJson(Map json) => + _$$GetEventsErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -314,10 +315,10 @@ class _$GetEventsError implements GetEventsError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetEventsError && + other is _$GetEventsErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -328,8 +329,9 @@ class _$GetEventsError implements GetEventsError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetEventsErrorCopyWith<_$GetEventsError> get copyWith => - __$$GetEventsErrorCopyWithImpl<_$GetEventsError>(this, _$identity); + _$$GetEventsErrorImplCopyWith<_$GetEventsErrorImpl> get copyWith => + __$$GetEventsErrorImplCopyWithImpl<_$GetEventsErrorImpl>( + this, _$identity); @override @optionalTypeArgs @@ -395,7 +397,7 @@ class _$GetEventsError implements GetEventsError { @override Map toJson() { - return _$$GetEventsErrorToJson( + return _$$GetEventsErrorImplToJson( this, ); } @@ -403,14 +405,14 @@ class _$GetEventsError implements GetEventsError { abstract class GetEventsError implements GetEvents { const factory GetEventsError({required final JsonRpcApiError error}) = - _$GetEventsError; + _$GetEventsErrorImpl; factory GetEventsError.fromJson(Map json) = - _$GetEventsError.fromJson; + _$GetEventsErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$GetEventsErrorCopyWith<_$GetEventsError> get copyWith => + _$$GetEventsErrorImplCopyWith<_$GetEventsErrorImpl> get copyWith => throw _privateConstructorUsedError; } @@ -528,11 +530,11 @@ class _$GetEventsRequestCopyWithImpl<$Res, $Val extends GetEventsRequest> } /// @nodoc -abstract class _$$_GetEventsRequestCopyWith<$Res> +abstract class _$$GetEventsRequestImplCopyWith<$Res> implements $GetEventsRequestCopyWith<$Res> { - factory _$$_GetEventsRequestCopyWith( - _$_GetEventsRequest value, $Res Function(_$_GetEventsRequest) then) = - __$$_GetEventsRequestCopyWithImpl<$Res>; + factory _$$GetEventsRequestImplCopyWith(_$GetEventsRequestImpl value, + $Res Function(_$GetEventsRequestImpl) then) = + __$$GetEventsRequestImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -550,11 +552,11 @@ abstract class _$$_GetEventsRequestCopyWith<$Res> } /// @nodoc -class __$$_GetEventsRequestCopyWithImpl<$Res> - extends _$GetEventsRequestCopyWithImpl<$Res, _$_GetEventsRequest> - implements _$$_GetEventsRequestCopyWith<$Res> { - __$$_GetEventsRequestCopyWithImpl( - _$_GetEventsRequest _value, $Res Function(_$_GetEventsRequest) _then) +class __$$GetEventsRequestImplCopyWithImpl<$Res> + extends _$GetEventsRequestCopyWithImpl<$Res, _$GetEventsRequestImpl> + implements _$$GetEventsRequestImplCopyWith<$Res> { + __$$GetEventsRequestImplCopyWithImpl(_$GetEventsRequestImpl _value, + $Res Function(_$GetEventsRequestImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -567,7 +569,7 @@ class __$$_GetEventsRequestCopyWithImpl<$Res> Object? chunkSize = null, Object? continuationToken = freezed, }) { - return _then(_$_GetEventsRequest( + return _then(_$GetEventsRequestImpl( fromBlock: freezed == fromBlock ? _value.fromBlock : fromBlock // ignore: cast_nullable_to_non_nullable @@ -599,8 +601,8 @@ class __$$_GetEventsRequestCopyWithImpl<$Res> /// @nodoc @JsonSerializable(includeIfNull: false) -class _$_GetEventsRequest implements _GetEventsRequest { - const _$_GetEventsRequest( +class _$GetEventsRequestImpl implements _GetEventsRequest { + const _$GetEventsRequestImpl( {this.fromBlock, this.toBlock, this.address, @@ -609,8 +611,8 @@ class _$_GetEventsRequest implements _GetEventsRequest { this.continuationToken}) : _keys = keys; - factory _$_GetEventsRequest.fromJson(Map json) => - _$$_GetEventsRequestFromJson(json); + factory _$GetEventsRequestImpl.fromJson(Map json) => + _$$GetEventsRequestImplFromJson(json); // start of EVENT_FILTER @override @@ -642,10 +644,10 @@ class _$_GetEventsRequest implements _GetEventsRequest { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_GetEventsRequest && + other is _$GetEventsRequestImpl && (identical(other.fromBlock, fromBlock) || other.fromBlock == fromBlock) && (identical(other.toBlock, toBlock) || other.toBlock == toBlock) && @@ -665,12 +667,13 @@ class _$_GetEventsRequest implements _GetEventsRequest { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_GetEventsRequestCopyWith<_$_GetEventsRequest> get copyWith => - __$$_GetEventsRequestCopyWithImpl<_$_GetEventsRequest>(this, _$identity); + _$$GetEventsRequestImplCopyWith<_$GetEventsRequestImpl> get copyWith => + __$$GetEventsRequestImplCopyWithImpl<_$GetEventsRequestImpl>( + this, _$identity); @override Map toJson() { - return _$$_GetEventsRequestToJson( + return _$$GetEventsRequestImplToJson( this, ); } @@ -683,10 +686,10 @@ abstract class _GetEventsRequest implements GetEventsRequest { final Felt? address, final List>? keys, required final int chunkSize, - final String? continuationToken}) = _$_GetEventsRequest; + final String? continuationToken}) = _$GetEventsRequestImpl; factory _GetEventsRequest.fromJson(Map json) = - _$_GetEventsRequest.fromJson; + _$GetEventsRequestImpl.fromJson; @override // start of EVENT_FILTER BlockId? get fromBlock; @@ -703,7 +706,7 @@ abstract class _GetEventsRequest implements GetEventsRequest { String? get continuationToken; @override @JsonKey(ignore: true) - _$$_GetEventsRequestCopyWith<_$_GetEventsRequest> get copyWith => + _$$GetEventsRequestImplCopyWith<_$GetEventsRequestImpl> get copyWith => throw _privateConstructorUsedError; } @@ -761,22 +764,22 @@ class _$GetEventsResponseCopyWithImpl<$Res, $Val extends GetEventsResponse> } /// @nodoc -abstract class _$$_GetEventsResponseCopyWith<$Res> +abstract class _$$GetEventsResponseImplCopyWith<$Res> implements $GetEventsResponseCopyWith<$Res> { - factory _$$_GetEventsResponseCopyWith(_$_GetEventsResponse value, - $Res Function(_$_GetEventsResponse) then) = - __$$_GetEventsResponseCopyWithImpl<$Res>; + factory _$$GetEventsResponseImplCopyWith(_$GetEventsResponseImpl value, + $Res Function(_$GetEventsResponseImpl) then) = + __$$GetEventsResponseImplCopyWithImpl<$Res>; @override @useResult $Res call({List events, String? continuation_token}); } /// @nodoc -class __$$_GetEventsResponseCopyWithImpl<$Res> - extends _$GetEventsResponseCopyWithImpl<$Res, _$_GetEventsResponse> - implements _$$_GetEventsResponseCopyWith<$Res> { - __$$_GetEventsResponseCopyWithImpl( - _$_GetEventsResponse _value, $Res Function(_$_GetEventsResponse) _then) +class __$$GetEventsResponseImplCopyWithImpl<$Res> + extends _$GetEventsResponseCopyWithImpl<$Res, _$GetEventsResponseImpl> + implements _$$GetEventsResponseImplCopyWith<$Res> { + __$$GetEventsResponseImplCopyWithImpl(_$GetEventsResponseImpl _value, + $Res Function(_$GetEventsResponseImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -785,7 +788,7 @@ class __$$_GetEventsResponseCopyWithImpl<$Res> Object? events = null, Object? continuation_token = freezed, }) { - return _then(_$_GetEventsResponse( + return _then(_$GetEventsResponseImpl( events: null == events ? _value._events : events // ignore: cast_nullable_to_non_nullable @@ -801,13 +804,13 @@ class __$$_GetEventsResponseCopyWithImpl<$Res> /// @nodoc @JsonSerializable(includeIfNull: false) -class _$_GetEventsResponse implements _GetEventsResponse { - const _$_GetEventsResponse( +class _$GetEventsResponseImpl implements _GetEventsResponse { + const _$GetEventsResponseImpl( {required final List events, this.continuation_token}) : _events = events; - factory _$_GetEventsResponse.fromJson(Map json) => - _$$_GetEventsResponseFromJson(json); + factory _$GetEventsResponseImpl.fromJson(Map json) => + _$$GetEventsResponseImplFromJson(json); final List _events; @override @@ -826,10 +829,10 @@ class _$_GetEventsResponse implements _GetEventsResponse { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_GetEventsResponse && + other is _$GetEventsResponseImpl && const DeepCollectionEquality().equals(other._events, _events) && (identical(other.continuation_token, continuation_token) || other.continuation_token == continuation_token)); @@ -843,13 +846,13 @@ class _$_GetEventsResponse implements _GetEventsResponse { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_GetEventsResponseCopyWith<_$_GetEventsResponse> get copyWith => - __$$_GetEventsResponseCopyWithImpl<_$_GetEventsResponse>( + _$$GetEventsResponseImplCopyWith<_$GetEventsResponseImpl> get copyWith => + __$$GetEventsResponseImplCopyWithImpl<_$GetEventsResponseImpl>( this, _$identity); @override Map toJson() { - return _$$_GetEventsResponseToJson( + return _$$GetEventsResponseImplToJson( this, ); } @@ -858,10 +861,10 @@ class _$_GetEventsResponse implements _GetEventsResponse { abstract class _GetEventsResponse implements GetEventsResponse { const factory _GetEventsResponse( {required final List events, - final String? continuation_token}) = _$_GetEventsResponse; + final String? continuation_token}) = _$GetEventsResponseImpl; factory _GetEventsResponse.fromJson(Map json) = - _$_GetEventsResponse.fromJson; + _$GetEventsResponseImpl.fromJson; @override List get events; @@ -869,7 +872,7 @@ abstract class _GetEventsResponse implements GetEventsResponse { String? get continuation_token; @override @JsonKey(ignore: true) - _$$_GetEventsResponseCopyWith<_$_GetEventsResponse> get copyWith => + _$$GetEventsResponseImplCopyWith<_$GetEventsResponseImpl> get copyWith => throw _privateConstructorUsedError; } @@ -957,11 +960,11 @@ class _$EmittedEventCopyWithImpl<$Res, $Val extends EmittedEvent> } /// @nodoc -abstract class _$$_EmittedEventCopyWith<$Res> +abstract class _$$EmittedEventImplCopyWith<$Res> implements $EmittedEventCopyWith<$Res> { - factory _$$_EmittedEventCopyWith( - _$_EmittedEvent value, $Res Function(_$_EmittedEvent) then) = - __$$_EmittedEventCopyWithImpl<$Res>; + factory _$$EmittedEventImplCopyWith( + _$EmittedEventImpl value, $Res Function(_$EmittedEventImpl) then) = + __$$EmittedEventImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -974,11 +977,11 @@ abstract class _$$_EmittedEventCopyWith<$Res> } /// @nodoc -class __$$_EmittedEventCopyWithImpl<$Res> - extends _$EmittedEventCopyWithImpl<$Res, _$_EmittedEvent> - implements _$$_EmittedEventCopyWith<$Res> { - __$$_EmittedEventCopyWithImpl( - _$_EmittedEvent _value, $Res Function(_$_EmittedEvent) _then) +class __$$EmittedEventImplCopyWithImpl<$Res> + extends _$EmittedEventCopyWithImpl<$Res, _$EmittedEventImpl> + implements _$$EmittedEventImplCopyWith<$Res> { + __$$EmittedEventImplCopyWithImpl( + _$EmittedEventImpl _value, $Res Function(_$EmittedEventImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -991,7 +994,7 @@ class __$$_EmittedEventCopyWithImpl<$Res> Object? blockHash = freezed, Object? blockNumber = freezed, }) { - return _then(_$_EmittedEvent( + return _then(_$EmittedEventImpl( fromAddress: freezed == fromAddress ? _value.fromAddress : fromAddress // ignore: cast_nullable_to_non_nullable @@ -1023,8 +1026,8 @@ class __$$_EmittedEventCopyWithImpl<$Res> /// @nodoc @JsonSerializable(includeIfNull: false) -class _$_EmittedEvent implements _EmittedEvent { - const _$_EmittedEvent( +class _$EmittedEventImpl implements _EmittedEvent { + const _$EmittedEventImpl( {required this.fromAddress, required final List? keys, required final List? data, @@ -1034,8 +1037,8 @@ class _$_EmittedEvent implements _EmittedEvent { : _keys = keys, _data = data; - factory _$_EmittedEvent.fromJson(Map json) => - _$$_EmittedEventFromJson(json); + factory _$EmittedEventImpl.fromJson(Map json) => + _$$EmittedEventImplFromJson(json); @override final Felt? fromAddress; @@ -1072,10 +1075,10 @@ class _$_EmittedEvent implements _EmittedEvent { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_EmittedEvent && + other is _$EmittedEventImpl && (identical(other.fromAddress, fromAddress) || other.fromAddress == fromAddress) && const DeepCollectionEquality().equals(other._keys, _keys) && @@ -1102,12 +1105,12 @@ class _$_EmittedEvent implements _EmittedEvent { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_EmittedEventCopyWith<_$_EmittedEvent> get copyWith => - __$$_EmittedEventCopyWithImpl<_$_EmittedEvent>(this, _$identity); + _$$EmittedEventImplCopyWith<_$EmittedEventImpl> get copyWith => + __$$EmittedEventImplCopyWithImpl<_$EmittedEventImpl>(this, _$identity); @override Map toJson() { - return _$$_EmittedEventToJson( + return _$$EmittedEventImplToJson( this, ); } @@ -1120,10 +1123,10 @@ abstract class _EmittedEvent implements EmittedEvent { required final List? data, required final Felt? transactionHash, required final Felt? blockHash, - required final int? blockNumber}) = _$_EmittedEvent; + required final int? blockNumber}) = _$EmittedEventImpl; factory _EmittedEvent.fromJson(Map json) = - _$_EmittedEvent.fromJson; + _$EmittedEventImpl.fromJson; @override Felt? get fromAddress; @@ -1139,6 +1142,6 @@ abstract class _EmittedEvent implements EmittedEvent { int? get blockNumber; @override @JsonKey(ignore: true) - _$$_EmittedEventCopyWith<_$_EmittedEvent> get copyWith => + _$$EmittedEventImplCopyWith<_$EmittedEventImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/get_events.g.dart b/packages/starknet_provider/lib/src/model/get_events.g.dart index 77bfb060..567e23d0 100644 --- a/packages/starknet_provider/lib/src/model/get_events.g.dart +++ b/packages/starknet_provider/lib/src/model/get_events.g.dart @@ -6,33 +6,37 @@ part of 'get_events.dart'; // JsonSerializableGenerator // ************************************************************************** -_$GetEventsResult _$$GetEventsResultFromJson(Map json) => - _$GetEventsResult( +_$GetEventsResultImpl _$$GetEventsResultImplFromJson( + Map json) => + _$GetEventsResultImpl( result: GetEventsResponse.fromJson(json['result'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetEventsResultToJson(_$GetEventsResult instance) => +Map _$$GetEventsResultImplToJson( + _$GetEventsResultImpl instance) => { 'result': instance.result.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$GetEventsError _$$GetEventsErrorFromJson(Map json) => - _$GetEventsError( +_$GetEventsErrorImpl _$$GetEventsErrorImplFromJson(Map json) => + _$GetEventsErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetEventsErrorToJson(_$GetEventsError instance) => +Map _$$GetEventsErrorImplToJson( + _$GetEventsErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$_GetEventsRequest _$$_GetEventsRequestFromJson(Map json) => - _$_GetEventsRequest( +_$GetEventsRequestImpl _$$GetEventsRequestImplFromJson( + Map json) => + _$GetEventsRequestImpl( fromBlock: json['from_block'] == null ? null : BlockId.fromJson(json['from_block'] as Map), @@ -47,11 +51,12 @@ _$_GetEventsRequest _$$_GetEventsRequestFromJson(Map json) => .map((e) => Felt.fromJson(e as String)) .toList()) .toList(), - chunkSize: json['chunk_size'] as int, + chunkSize: (json['chunk_size'] as num).toInt(), continuationToken: json['continuation_token'] as String?, ); -Map _$$_GetEventsRequestToJson(_$_GetEventsRequest instance) { +Map _$$GetEventsRequestImplToJson( + _$GetEventsRequestImpl instance) { final val = {}; void writeNotNull(String key, dynamic value) { @@ -70,16 +75,17 @@ Map _$$_GetEventsRequestToJson(_$_GetEventsRequest instance) { return val; } -_$_GetEventsResponse _$$_GetEventsResponseFromJson(Map json) => - _$_GetEventsResponse( +_$GetEventsResponseImpl _$$GetEventsResponseImplFromJson( + Map json) => + _$GetEventsResponseImpl( events: (json['events'] as List) .map((e) => EmittedEvent.fromJson(e as Map)) .toList(), continuation_token: json['continuation_token'] as String?, ); -Map _$$_GetEventsResponseToJson( - _$_GetEventsResponse instance) { +Map _$$GetEventsResponseImplToJson( + _$GetEventsResponseImpl instance) { final val = { 'events': instance.events.map((e) => e.toJson()).toList(), }; @@ -94,8 +100,8 @@ Map _$$_GetEventsResponseToJson( return val; } -_$_EmittedEvent _$$_EmittedEventFromJson(Map json) => - _$_EmittedEvent( +_$EmittedEventImpl _$$EmittedEventImplFromJson(Map json) => + _$EmittedEventImpl( fromAddress: json['from_address'] == null ? null : Felt.fromJson(json['from_address'] as String), @@ -111,10 +117,10 @@ _$_EmittedEvent _$$_EmittedEventFromJson(Map json) => blockHash: json['block_hash'] == null ? null : Felt.fromJson(json['block_hash'] as String), - blockNumber: json['block_number'] as int?, + blockNumber: (json['block_number'] as num?)?.toInt(), ); -Map _$$_EmittedEventToJson(_$_EmittedEvent instance) { +Map _$$EmittedEventImplToJson(_$EmittedEventImpl instance) { final val = {}; void writeNotNull(String key, dynamic value) { diff --git a/packages/starknet_provider/lib/src/model/get_nonce.freezed.dart b/packages/starknet_provider/lib/src/model/get_nonce.freezed.dart index 3db9a66f..b5eb06fd 100644 --- a/packages/starknet_provider/lib/src/model/get_nonce.freezed.dart +++ b/packages/starknet_provider/lib/src/model/get_nonce.freezed.dart @@ -12,7 +12,7 @@ part of 'get_nonce.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); GetNonce _$GetNonceFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -91,20 +91,20 @@ class _$GetNonceCopyWithImpl<$Res, $Val extends GetNonce> } /// @nodoc -abstract class _$$GetNonceResultCopyWith<$Res> { - factory _$$GetNonceResultCopyWith( - _$GetNonceResult value, $Res Function(_$GetNonceResult) then) = - __$$GetNonceResultCopyWithImpl<$Res>; +abstract class _$$GetNonceResultImplCopyWith<$Res> { + factory _$$GetNonceResultImplCopyWith(_$GetNonceResultImpl value, + $Res Function(_$GetNonceResultImpl) then) = + __$$GetNonceResultImplCopyWithImpl<$Res>; @useResult $Res call({Felt result}); } /// @nodoc -class __$$GetNonceResultCopyWithImpl<$Res> - extends _$GetNonceCopyWithImpl<$Res, _$GetNonceResult> - implements _$$GetNonceResultCopyWith<$Res> { - __$$GetNonceResultCopyWithImpl( - _$GetNonceResult _value, $Res Function(_$GetNonceResult) _then) +class __$$GetNonceResultImplCopyWithImpl<$Res> + extends _$GetNonceCopyWithImpl<$Res, _$GetNonceResultImpl> + implements _$$GetNonceResultImplCopyWith<$Res> { + __$$GetNonceResultImplCopyWithImpl( + _$GetNonceResultImpl _value, $Res Function(_$GetNonceResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -112,7 +112,7 @@ class __$$GetNonceResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$GetNonceResult( + return _then(_$GetNonceResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -123,12 +123,12 @@ class __$$GetNonceResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetNonceResult implements GetNonceResult { - const _$GetNonceResult({required this.result, final String? $type}) +class _$GetNonceResultImpl implements GetNonceResult { + const _$GetNonceResultImpl({required this.result, final String? $type}) : $type = $type ?? 'result'; - factory _$GetNonceResult.fromJson(Map json) => - _$$GetNonceResultFromJson(json); + factory _$GetNonceResultImpl.fromJson(Map json) => + _$$GetNonceResultImplFromJson(json); @override final Felt result; @@ -142,10 +142,10 @@ class _$GetNonceResult implements GetNonceResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetNonceResult && + other is _$GetNonceResultImpl && (identical(other.result, result) || other.result == result)); } @@ -156,8 +156,9 @@ class _$GetNonceResult implements GetNonceResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetNonceResultCopyWith<_$GetNonceResult> get copyWith => - __$$GetNonceResultCopyWithImpl<_$GetNonceResult>(this, _$identity); + _$$GetNonceResultImplCopyWith<_$GetNonceResultImpl> get copyWith => + __$$GetNonceResultImplCopyWithImpl<_$GetNonceResultImpl>( + this, _$identity); @override @optionalTypeArgs @@ -223,29 +224,30 @@ class _$GetNonceResult implements GetNonceResult { @override Map toJson() { - return _$$GetNonceResultToJson( + return _$$GetNonceResultImplToJson( this, ); } } abstract class GetNonceResult implements GetNonce { - const factory GetNonceResult({required final Felt result}) = _$GetNonceResult; + const factory GetNonceResult({required final Felt result}) = + _$GetNonceResultImpl; factory GetNonceResult.fromJson(Map json) = - _$GetNonceResult.fromJson; + _$GetNonceResultImpl.fromJson; Felt get result; @JsonKey(ignore: true) - _$$GetNonceResultCopyWith<_$GetNonceResult> get copyWith => + _$$GetNonceResultImplCopyWith<_$GetNonceResultImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$GetNonceErrorCopyWith<$Res> { - factory _$$GetNonceErrorCopyWith( - _$GetNonceError value, $Res Function(_$GetNonceError) then) = - __$$GetNonceErrorCopyWithImpl<$Res>; +abstract class _$$GetNonceErrorImplCopyWith<$Res> { + factory _$$GetNonceErrorImplCopyWith( + _$GetNonceErrorImpl value, $Res Function(_$GetNonceErrorImpl) then) = + __$$GetNonceErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -253,11 +255,11 @@ abstract class _$$GetNonceErrorCopyWith<$Res> { } /// @nodoc -class __$$GetNonceErrorCopyWithImpl<$Res> - extends _$GetNonceCopyWithImpl<$Res, _$GetNonceError> - implements _$$GetNonceErrorCopyWith<$Res> { - __$$GetNonceErrorCopyWithImpl( - _$GetNonceError _value, $Res Function(_$GetNonceError) _then) +class __$$GetNonceErrorImplCopyWithImpl<$Res> + extends _$GetNonceCopyWithImpl<$Res, _$GetNonceErrorImpl> + implements _$$GetNonceErrorImplCopyWith<$Res> { + __$$GetNonceErrorImplCopyWithImpl( + _$GetNonceErrorImpl _value, $Res Function(_$GetNonceErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -265,7 +267,7 @@ class __$$GetNonceErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$GetNonceError( + return _then(_$GetNonceErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -284,12 +286,12 @@ class __$$GetNonceErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetNonceError implements GetNonceError { - const _$GetNonceError({required this.error, final String? $type}) +class _$GetNonceErrorImpl implements GetNonceError { + const _$GetNonceErrorImpl({required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$GetNonceError.fromJson(Map json) => - _$$GetNonceErrorFromJson(json); + factory _$GetNonceErrorImpl.fromJson(Map json) => + _$$GetNonceErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -303,10 +305,10 @@ class _$GetNonceError implements GetNonceError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetNonceError && + other is _$GetNonceErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -317,8 +319,8 @@ class _$GetNonceError implements GetNonceError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetNonceErrorCopyWith<_$GetNonceError> get copyWith => - __$$GetNonceErrorCopyWithImpl<_$GetNonceError>(this, _$identity); + _$$GetNonceErrorImplCopyWith<_$GetNonceErrorImpl> get copyWith => + __$$GetNonceErrorImplCopyWithImpl<_$GetNonceErrorImpl>(this, _$identity); @override @optionalTypeArgs @@ -384,7 +386,7 @@ class _$GetNonceError implements GetNonceError { @override Map toJson() { - return _$$GetNonceErrorToJson( + return _$$GetNonceErrorImplToJson( this, ); } @@ -392,13 +394,13 @@ class _$GetNonceError implements GetNonceError { abstract class GetNonceError implements GetNonce { const factory GetNonceError({required final JsonRpcApiError error}) = - _$GetNonceError; + _$GetNonceErrorImpl; factory GetNonceError.fromJson(Map json) = - _$GetNonceError.fromJson; + _$GetNonceErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$GetNonceErrorCopyWith<_$GetNonceError> get copyWith => + _$$GetNonceErrorImplCopyWith<_$GetNonceErrorImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/get_nonce.g.dart b/packages/starknet_provider/lib/src/model/get_nonce.g.dart index 9bf0fc0f..b0f49e92 100644 --- a/packages/starknet_provider/lib/src/model/get_nonce.g.dart +++ b/packages/starknet_provider/lib/src/model/get_nonce.g.dart @@ -6,25 +6,26 @@ part of 'get_nonce.dart'; // JsonSerializableGenerator // ************************************************************************** -_$GetNonceResult _$$GetNonceResultFromJson(Map json) => - _$GetNonceResult( +_$GetNonceResultImpl _$$GetNonceResultImplFromJson(Map json) => + _$GetNonceResultImpl( result: Felt.fromJson(json['result'] as String), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetNonceResultToJson(_$GetNonceResult instance) => +Map _$$GetNonceResultImplToJson( + _$GetNonceResultImpl instance) => { 'result': instance.result.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$GetNonceError _$$GetNonceErrorFromJson(Map json) => - _$GetNonceError( +_$GetNonceErrorImpl _$$GetNonceErrorImplFromJson(Map json) => + _$GetNonceErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetNonceErrorToJson(_$GetNonceError instance) => +Map _$$GetNonceErrorImplToJson(_$GetNonceErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, diff --git a/packages/starknet_provider/lib/src/model/get_state_update.freezed.dart b/packages/starknet_provider/lib/src/model/get_state_update.freezed.dart index c6a9af3c..56a81acf 100644 --- a/packages/starknet_provider/lib/src/model/get_state_update.freezed.dart +++ b/packages/starknet_provider/lib/src/model/get_state_update.freezed.dart @@ -12,7 +12,7 @@ part of 'get_state_update.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); GetStateUpdate _$GetStateUpdateFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -92,10 +92,10 @@ class _$GetStateUpdateCopyWithImpl<$Res, $Val extends GetStateUpdate> } /// @nodoc -abstract class _$$GetStateUpdateResultCopyWith<$Res> { - factory _$$GetStateUpdateResultCopyWith(_$GetStateUpdateResult value, - $Res Function(_$GetStateUpdateResult) then) = - __$$GetStateUpdateResultCopyWithImpl<$Res>; +abstract class _$$GetStateUpdateResultImplCopyWith<$Res> { + factory _$$GetStateUpdateResultImplCopyWith(_$GetStateUpdateResultImpl value, + $Res Function(_$GetStateUpdateResultImpl) then) = + __$$GetStateUpdateResultImplCopyWithImpl<$Res>; @useResult $Res call({StateUpdate result}); @@ -103,11 +103,11 @@ abstract class _$$GetStateUpdateResultCopyWith<$Res> { } /// @nodoc -class __$$GetStateUpdateResultCopyWithImpl<$Res> - extends _$GetStateUpdateCopyWithImpl<$Res, _$GetStateUpdateResult> - implements _$$GetStateUpdateResultCopyWith<$Res> { - __$$GetStateUpdateResultCopyWithImpl(_$GetStateUpdateResult _value, - $Res Function(_$GetStateUpdateResult) _then) +class __$$GetStateUpdateResultImplCopyWithImpl<$Res> + extends _$GetStateUpdateCopyWithImpl<$Res, _$GetStateUpdateResultImpl> + implements _$$GetStateUpdateResultImplCopyWith<$Res> { + __$$GetStateUpdateResultImplCopyWithImpl(_$GetStateUpdateResultImpl _value, + $Res Function(_$GetStateUpdateResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -115,7 +115,7 @@ class __$$GetStateUpdateResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$GetStateUpdateResult( + return _then(_$GetStateUpdateResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -134,12 +134,12 @@ class __$$GetStateUpdateResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetStateUpdateResult implements GetStateUpdateResult { - const _$GetStateUpdateResult({required this.result, final String? $type}) +class _$GetStateUpdateResultImpl implements GetStateUpdateResult { + const _$GetStateUpdateResultImpl({required this.result, final String? $type}) : $type = $type ?? 'result'; - factory _$GetStateUpdateResult.fromJson(Map json) => - _$$GetStateUpdateResultFromJson(json); + factory _$GetStateUpdateResultImpl.fromJson(Map json) => + _$$GetStateUpdateResultImplFromJson(json); @override final StateUpdate result; @@ -153,10 +153,10 @@ class _$GetStateUpdateResult implements GetStateUpdateResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetStateUpdateResult && + other is _$GetStateUpdateResultImpl && (identical(other.result, result) || other.result == result)); } @@ -167,9 +167,10 @@ class _$GetStateUpdateResult implements GetStateUpdateResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetStateUpdateResultCopyWith<_$GetStateUpdateResult> get copyWith => - __$$GetStateUpdateResultCopyWithImpl<_$GetStateUpdateResult>( - this, _$identity); + _$$GetStateUpdateResultImplCopyWith<_$GetStateUpdateResultImpl> + get copyWith => + __$$GetStateUpdateResultImplCopyWithImpl<_$GetStateUpdateResultImpl>( + this, _$identity); @override @optionalTypeArgs @@ -235,7 +236,7 @@ class _$GetStateUpdateResult implements GetStateUpdateResult { @override Map toJson() { - return _$$GetStateUpdateResultToJson( + return _$$GetStateUpdateResultImplToJson( this, ); } @@ -243,22 +244,22 @@ class _$GetStateUpdateResult implements GetStateUpdateResult { abstract class GetStateUpdateResult implements GetStateUpdate { const factory GetStateUpdateResult({required final StateUpdate result}) = - _$GetStateUpdateResult; + _$GetStateUpdateResultImpl; factory GetStateUpdateResult.fromJson(Map json) = - _$GetStateUpdateResult.fromJson; + _$GetStateUpdateResultImpl.fromJson; StateUpdate get result; @JsonKey(ignore: true) - _$$GetStateUpdateResultCopyWith<_$GetStateUpdateResult> get copyWith => - throw _privateConstructorUsedError; + _$$GetStateUpdateResultImplCopyWith<_$GetStateUpdateResultImpl> + get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$GetStateUpdateErrorCopyWith<$Res> { - factory _$$GetStateUpdateErrorCopyWith(_$GetStateUpdateError value, - $Res Function(_$GetStateUpdateError) then) = - __$$GetStateUpdateErrorCopyWithImpl<$Res>; +abstract class _$$GetStateUpdateErrorImplCopyWith<$Res> { + factory _$$GetStateUpdateErrorImplCopyWith(_$GetStateUpdateErrorImpl value, + $Res Function(_$GetStateUpdateErrorImpl) then) = + __$$GetStateUpdateErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -266,11 +267,11 @@ abstract class _$$GetStateUpdateErrorCopyWith<$Res> { } /// @nodoc -class __$$GetStateUpdateErrorCopyWithImpl<$Res> - extends _$GetStateUpdateCopyWithImpl<$Res, _$GetStateUpdateError> - implements _$$GetStateUpdateErrorCopyWith<$Res> { - __$$GetStateUpdateErrorCopyWithImpl( - _$GetStateUpdateError _value, $Res Function(_$GetStateUpdateError) _then) +class __$$GetStateUpdateErrorImplCopyWithImpl<$Res> + extends _$GetStateUpdateCopyWithImpl<$Res, _$GetStateUpdateErrorImpl> + implements _$$GetStateUpdateErrorImplCopyWith<$Res> { + __$$GetStateUpdateErrorImplCopyWithImpl(_$GetStateUpdateErrorImpl _value, + $Res Function(_$GetStateUpdateErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -278,7 +279,7 @@ class __$$GetStateUpdateErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$GetStateUpdateError( + return _then(_$GetStateUpdateErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -297,12 +298,12 @@ class __$$GetStateUpdateErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetStateUpdateError implements GetStateUpdateError { - const _$GetStateUpdateError({required this.error, final String? $type}) +class _$GetStateUpdateErrorImpl implements GetStateUpdateError { + const _$GetStateUpdateErrorImpl({required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$GetStateUpdateError.fromJson(Map json) => - _$$GetStateUpdateErrorFromJson(json); + factory _$GetStateUpdateErrorImpl.fromJson(Map json) => + _$$GetStateUpdateErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -316,10 +317,10 @@ class _$GetStateUpdateError implements GetStateUpdateError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetStateUpdateError && + other is _$GetStateUpdateErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -330,8 +331,8 @@ class _$GetStateUpdateError implements GetStateUpdateError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetStateUpdateErrorCopyWith<_$GetStateUpdateError> get copyWith => - __$$GetStateUpdateErrorCopyWithImpl<_$GetStateUpdateError>( + _$$GetStateUpdateErrorImplCopyWith<_$GetStateUpdateErrorImpl> get copyWith => + __$$GetStateUpdateErrorImplCopyWithImpl<_$GetStateUpdateErrorImpl>( this, _$identity); @override @@ -398,7 +399,7 @@ class _$GetStateUpdateError implements GetStateUpdateError { @override Map toJson() { - return _$$GetStateUpdateErrorToJson( + return _$$GetStateUpdateErrorImplToJson( this, ); } @@ -406,13 +407,13 @@ class _$GetStateUpdateError implements GetStateUpdateError { abstract class GetStateUpdateError implements GetStateUpdate { const factory GetStateUpdateError({required final JsonRpcApiError error}) = - _$GetStateUpdateError; + _$GetStateUpdateErrorImpl; factory GetStateUpdateError.fromJson(Map json) = - _$GetStateUpdateError.fromJson; + _$GetStateUpdateErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$GetStateUpdateErrorCopyWith<_$GetStateUpdateError> get copyWith => + _$$GetStateUpdateErrorImplCopyWith<_$GetStateUpdateErrorImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/get_state_update.g.dart b/packages/starknet_provider/lib/src/model/get_state_update.g.dart index 663862a4..43c4b5e9 100644 --- a/packages/starknet_provider/lib/src/model/get_state_update.g.dart +++ b/packages/starknet_provider/lib/src/model/get_state_update.g.dart @@ -6,29 +6,29 @@ part of 'get_state_update.dart'; // JsonSerializableGenerator // ************************************************************************** -_$GetStateUpdateResult _$$GetStateUpdateResultFromJson( +_$GetStateUpdateResultImpl _$$GetStateUpdateResultImplFromJson( Map json) => - _$GetStateUpdateResult( + _$GetStateUpdateResultImpl( result: StateUpdate.fromJson(json['result'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetStateUpdateResultToJson( - _$GetStateUpdateResult instance) => +Map _$$GetStateUpdateResultImplToJson( + _$GetStateUpdateResultImpl instance) => { 'result': instance.result.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$GetStateUpdateError _$$GetStateUpdateErrorFromJson( +_$GetStateUpdateErrorImpl _$$GetStateUpdateErrorImplFromJson( Map json) => - _$GetStateUpdateError( + _$GetStateUpdateErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetStateUpdateErrorToJson( - _$GetStateUpdateError instance) => +Map _$$GetStateUpdateErrorImplToJson( + _$GetStateUpdateErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, diff --git a/packages/starknet_provider/lib/src/model/get_storage.freezed.dart b/packages/starknet_provider/lib/src/model/get_storage.freezed.dart index b55516d9..cdaaf762 100644 --- a/packages/starknet_provider/lib/src/model/get_storage.freezed.dart +++ b/packages/starknet_provider/lib/src/model/get_storage.freezed.dart @@ -12,7 +12,7 @@ part of 'get_storage.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); GetStorage _$GetStorageFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -92,20 +92,20 @@ class _$GetStorageCopyWithImpl<$Res, $Val extends GetStorage> } /// @nodoc -abstract class _$$GetStorageResultCopyWith<$Res> { - factory _$$GetStorageResultCopyWith( - _$GetStorageResult value, $Res Function(_$GetStorageResult) then) = - __$$GetStorageResultCopyWithImpl<$Res>; +abstract class _$$GetStorageResultImplCopyWith<$Res> { + factory _$$GetStorageResultImplCopyWith(_$GetStorageResultImpl value, + $Res Function(_$GetStorageResultImpl) then) = + __$$GetStorageResultImplCopyWithImpl<$Res>; @useResult $Res call({Felt result}); } /// @nodoc -class __$$GetStorageResultCopyWithImpl<$Res> - extends _$GetStorageCopyWithImpl<$Res, _$GetStorageResult> - implements _$$GetStorageResultCopyWith<$Res> { - __$$GetStorageResultCopyWithImpl( - _$GetStorageResult _value, $Res Function(_$GetStorageResult) _then) +class __$$GetStorageResultImplCopyWithImpl<$Res> + extends _$GetStorageCopyWithImpl<$Res, _$GetStorageResultImpl> + implements _$$GetStorageResultImplCopyWith<$Res> { + __$$GetStorageResultImplCopyWithImpl(_$GetStorageResultImpl _value, + $Res Function(_$GetStorageResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -113,7 +113,7 @@ class __$$GetStorageResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$GetStorageResult( + return _then(_$GetStorageResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -124,12 +124,12 @@ class __$$GetStorageResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetStorageResult implements GetStorageResult { - const _$GetStorageResult({required this.result, final String? $type}) +class _$GetStorageResultImpl implements GetStorageResult { + const _$GetStorageResultImpl({required this.result, final String? $type}) : $type = $type ?? 'result'; - factory _$GetStorageResult.fromJson(Map json) => - _$$GetStorageResultFromJson(json); + factory _$GetStorageResultImpl.fromJson(Map json) => + _$$GetStorageResultImplFromJson(json); @override final Felt result; @@ -143,10 +143,10 @@ class _$GetStorageResult implements GetStorageResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetStorageResult && + other is _$GetStorageResultImpl && (identical(other.result, result) || other.result == result)); } @@ -157,8 +157,9 @@ class _$GetStorageResult implements GetStorageResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetStorageResultCopyWith<_$GetStorageResult> get copyWith => - __$$GetStorageResultCopyWithImpl<_$GetStorageResult>(this, _$identity); + _$$GetStorageResultImplCopyWith<_$GetStorageResultImpl> get copyWith => + __$$GetStorageResultImplCopyWithImpl<_$GetStorageResultImpl>( + this, _$identity); @override @optionalTypeArgs @@ -224,7 +225,7 @@ class _$GetStorageResult implements GetStorageResult { @override Map toJson() { - return _$$GetStorageResultToJson( + return _$$GetStorageResultImplToJson( this, ); } @@ -232,22 +233,22 @@ class _$GetStorageResult implements GetStorageResult { abstract class GetStorageResult implements GetStorage { const factory GetStorageResult({required final Felt result}) = - _$GetStorageResult; + _$GetStorageResultImpl; factory GetStorageResult.fromJson(Map json) = - _$GetStorageResult.fromJson; + _$GetStorageResultImpl.fromJson; Felt get result; @JsonKey(ignore: true) - _$$GetStorageResultCopyWith<_$GetStorageResult> get copyWith => + _$$GetStorageResultImplCopyWith<_$GetStorageResultImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$GetStorageErrorCopyWith<$Res> { - factory _$$GetStorageErrorCopyWith( - _$GetStorageError value, $Res Function(_$GetStorageError) then) = - __$$GetStorageErrorCopyWithImpl<$Res>; +abstract class _$$GetStorageErrorImplCopyWith<$Res> { + factory _$$GetStorageErrorImplCopyWith(_$GetStorageErrorImpl value, + $Res Function(_$GetStorageErrorImpl) then) = + __$$GetStorageErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -255,11 +256,11 @@ abstract class _$$GetStorageErrorCopyWith<$Res> { } /// @nodoc -class __$$GetStorageErrorCopyWithImpl<$Res> - extends _$GetStorageCopyWithImpl<$Res, _$GetStorageError> - implements _$$GetStorageErrorCopyWith<$Res> { - __$$GetStorageErrorCopyWithImpl( - _$GetStorageError _value, $Res Function(_$GetStorageError) _then) +class __$$GetStorageErrorImplCopyWithImpl<$Res> + extends _$GetStorageCopyWithImpl<$Res, _$GetStorageErrorImpl> + implements _$$GetStorageErrorImplCopyWith<$Res> { + __$$GetStorageErrorImplCopyWithImpl( + _$GetStorageErrorImpl _value, $Res Function(_$GetStorageErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -267,7 +268,7 @@ class __$$GetStorageErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$GetStorageError( + return _then(_$GetStorageErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -286,12 +287,12 @@ class __$$GetStorageErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetStorageError implements GetStorageError { - const _$GetStorageError({required this.error, final String? $type}) +class _$GetStorageErrorImpl implements GetStorageError { + const _$GetStorageErrorImpl({required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$GetStorageError.fromJson(Map json) => - _$$GetStorageErrorFromJson(json); + factory _$GetStorageErrorImpl.fromJson(Map json) => + _$$GetStorageErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -305,10 +306,10 @@ class _$GetStorageError implements GetStorageError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetStorageError && + other is _$GetStorageErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -319,8 +320,9 @@ class _$GetStorageError implements GetStorageError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetStorageErrorCopyWith<_$GetStorageError> get copyWith => - __$$GetStorageErrorCopyWithImpl<_$GetStorageError>(this, _$identity); + _$$GetStorageErrorImplCopyWith<_$GetStorageErrorImpl> get copyWith => + __$$GetStorageErrorImplCopyWithImpl<_$GetStorageErrorImpl>( + this, _$identity); @override @optionalTypeArgs @@ -386,7 +388,7 @@ class _$GetStorageError implements GetStorageError { @override Map toJson() { - return _$$GetStorageErrorToJson( + return _$$GetStorageErrorImplToJson( this, ); } @@ -394,13 +396,13 @@ class _$GetStorageError implements GetStorageError { abstract class GetStorageError implements GetStorage { const factory GetStorageError({required final JsonRpcApiError error}) = - _$GetStorageError; + _$GetStorageErrorImpl; factory GetStorageError.fromJson(Map json) = - _$GetStorageError.fromJson; + _$GetStorageErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$GetStorageErrorCopyWith<_$GetStorageError> get copyWith => + _$$GetStorageErrorImplCopyWith<_$GetStorageErrorImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/get_storage.g.dart b/packages/starknet_provider/lib/src/model/get_storage.g.dart index 143f4ad9..75dedbc3 100644 --- a/packages/starknet_provider/lib/src/model/get_storage.g.dart +++ b/packages/starknet_provider/lib/src/model/get_storage.g.dart @@ -6,25 +6,29 @@ part of 'get_storage.dart'; // JsonSerializableGenerator // ************************************************************************** -_$GetStorageResult _$$GetStorageResultFromJson(Map json) => - _$GetStorageResult( +_$GetStorageResultImpl _$$GetStorageResultImplFromJson( + Map json) => + _$GetStorageResultImpl( result: Felt.fromJson(json['result'] as String), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetStorageResultToJson(_$GetStorageResult instance) => +Map _$$GetStorageResultImplToJson( + _$GetStorageResultImpl instance) => { 'result': instance.result.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$GetStorageError _$$GetStorageErrorFromJson(Map json) => - _$GetStorageError( +_$GetStorageErrorImpl _$$GetStorageErrorImplFromJson( + Map json) => + _$GetStorageErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetStorageErrorToJson(_$GetStorageError instance) => +Map _$$GetStorageErrorImplToJson( + _$GetStorageErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, diff --git a/packages/starknet_provider/lib/src/model/get_transaction.dart b/packages/starknet_provider/lib/src/model/get_transaction.dart index d7b68852..8b507552 100644 --- a/packages/starknet_provider/lib/src/model/get_transaction.dart +++ b/packages/starknet_provider/lib/src/model/get_transaction.dart @@ -1,3 +1,5 @@ +// ignore_for_file: invalid_annotation_target + import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:starknet/starknet.dart'; import 'package:starknet_provider/starknet_provider.dart'; diff --git a/packages/starknet_provider/lib/src/model/get_transaction.freezed.dart b/packages/starknet_provider/lib/src/model/get_transaction.freezed.dart index 44fa7f9b..fb0f4a3b 100644 --- a/packages/starknet_provider/lib/src/model/get_transaction.freezed.dart +++ b/packages/starknet_provider/lib/src/model/get_transaction.freezed.dart @@ -12,7 +12,7 @@ part of 'get_transaction.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); GetTransaction _$GetTransactionFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -92,10 +92,10 @@ class _$GetTransactionCopyWithImpl<$Res, $Val extends GetTransaction> } /// @nodoc -abstract class _$$GetTransactionResultCopyWith<$Res> { - factory _$$GetTransactionResultCopyWith(_$GetTransactionResult value, - $Res Function(_$GetTransactionResult) then) = - __$$GetTransactionResultCopyWithImpl<$Res>; +abstract class _$$GetTransactionResultImplCopyWith<$Res> { + factory _$$GetTransactionResultImplCopyWith(_$GetTransactionResultImpl value, + $Res Function(_$GetTransactionResultImpl) then) = + __$$GetTransactionResultImplCopyWithImpl<$Res>; @useResult $Res call({Txn result}); @@ -103,11 +103,11 @@ abstract class _$$GetTransactionResultCopyWith<$Res> { } /// @nodoc -class __$$GetTransactionResultCopyWithImpl<$Res> - extends _$GetTransactionCopyWithImpl<$Res, _$GetTransactionResult> - implements _$$GetTransactionResultCopyWith<$Res> { - __$$GetTransactionResultCopyWithImpl(_$GetTransactionResult _value, - $Res Function(_$GetTransactionResult) _then) +class __$$GetTransactionResultImplCopyWithImpl<$Res> + extends _$GetTransactionCopyWithImpl<$Res, _$GetTransactionResultImpl> + implements _$$GetTransactionResultImplCopyWith<$Res> { + __$$GetTransactionResultImplCopyWithImpl(_$GetTransactionResultImpl _value, + $Res Function(_$GetTransactionResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -115,7 +115,7 @@ class __$$GetTransactionResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$GetTransactionResult( + return _then(_$GetTransactionResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -134,12 +134,12 @@ class __$$GetTransactionResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetTransactionResult implements GetTransactionResult { - const _$GetTransactionResult({required this.result, final String? $type}) +class _$GetTransactionResultImpl implements GetTransactionResult { + const _$GetTransactionResultImpl({required this.result, final String? $type}) : $type = $type ?? 'result'; - factory _$GetTransactionResult.fromJson(Map json) => - _$$GetTransactionResultFromJson(json); + factory _$GetTransactionResultImpl.fromJson(Map json) => + _$$GetTransactionResultImplFromJson(json); @override final Txn result; @@ -153,10 +153,10 @@ class _$GetTransactionResult implements GetTransactionResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetTransactionResult && + other is _$GetTransactionResultImpl && (identical(other.result, result) || other.result == result)); } @@ -167,9 +167,10 @@ class _$GetTransactionResult implements GetTransactionResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetTransactionResultCopyWith<_$GetTransactionResult> get copyWith => - __$$GetTransactionResultCopyWithImpl<_$GetTransactionResult>( - this, _$identity); + _$$GetTransactionResultImplCopyWith<_$GetTransactionResultImpl> + get copyWith => + __$$GetTransactionResultImplCopyWithImpl<_$GetTransactionResultImpl>( + this, _$identity); @override @optionalTypeArgs @@ -235,7 +236,7 @@ class _$GetTransactionResult implements GetTransactionResult { @override Map toJson() { - return _$$GetTransactionResultToJson( + return _$$GetTransactionResultImplToJson( this, ); } @@ -243,22 +244,22 @@ class _$GetTransactionResult implements GetTransactionResult { abstract class GetTransactionResult implements GetTransaction { const factory GetTransactionResult({required final Txn result}) = - _$GetTransactionResult; + _$GetTransactionResultImpl; factory GetTransactionResult.fromJson(Map json) = - _$GetTransactionResult.fromJson; + _$GetTransactionResultImpl.fromJson; Txn get result; @JsonKey(ignore: true) - _$$GetTransactionResultCopyWith<_$GetTransactionResult> get copyWith => - throw _privateConstructorUsedError; + _$$GetTransactionResultImplCopyWith<_$GetTransactionResultImpl> + get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$GetTransactionErrorCopyWith<$Res> { - factory _$$GetTransactionErrorCopyWith(_$GetTransactionError value, - $Res Function(_$GetTransactionError) then) = - __$$GetTransactionErrorCopyWithImpl<$Res>; +abstract class _$$GetTransactionErrorImplCopyWith<$Res> { + factory _$$GetTransactionErrorImplCopyWith(_$GetTransactionErrorImpl value, + $Res Function(_$GetTransactionErrorImpl) then) = + __$$GetTransactionErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -266,11 +267,11 @@ abstract class _$$GetTransactionErrorCopyWith<$Res> { } /// @nodoc -class __$$GetTransactionErrorCopyWithImpl<$Res> - extends _$GetTransactionCopyWithImpl<$Res, _$GetTransactionError> - implements _$$GetTransactionErrorCopyWith<$Res> { - __$$GetTransactionErrorCopyWithImpl( - _$GetTransactionError _value, $Res Function(_$GetTransactionError) _then) +class __$$GetTransactionErrorImplCopyWithImpl<$Res> + extends _$GetTransactionCopyWithImpl<$Res, _$GetTransactionErrorImpl> + implements _$$GetTransactionErrorImplCopyWith<$Res> { + __$$GetTransactionErrorImplCopyWithImpl(_$GetTransactionErrorImpl _value, + $Res Function(_$GetTransactionErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -278,7 +279,7 @@ class __$$GetTransactionErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$GetTransactionError( + return _then(_$GetTransactionErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -297,12 +298,12 @@ class __$$GetTransactionErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetTransactionError implements GetTransactionError { - const _$GetTransactionError({required this.error, final String? $type}) +class _$GetTransactionErrorImpl implements GetTransactionError { + const _$GetTransactionErrorImpl({required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$GetTransactionError.fromJson(Map json) => - _$$GetTransactionErrorFromJson(json); + factory _$GetTransactionErrorImpl.fromJson(Map json) => + _$$GetTransactionErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -316,10 +317,10 @@ class _$GetTransactionError implements GetTransactionError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetTransactionError && + other is _$GetTransactionErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -330,8 +331,8 @@ class _$GetTransactionError implements GetTransactionError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetTransactionErrorCopyWith<_$GetTransactionError> get copyWith => - __$$GetTransactionErrorCopyWithImpl<_$GetTransactionError>( + _$$GetTransactionErrorImplCopyWith<_$GetTransactionErrorImpl> get copyWith => + __$$GetTransactionErrorImplCopyWithImpl<_$GetTransactionErrorImpl>( this, _$identity); @override @@ -398,7 +399,7 @@ class _$GetTransactionError implements GetTransactionError { @override Map toJson() { - return _$$GetTransactionErrorToJson( + return _$$GetTransactionErrorImplToJson( this, ); } @@ -406,14 +407,14 @@ class _$GetTransactionError implements GetTransactionError { abstract class GetTransactionError implements GetTransaction { const factory GetTransactionError({required final JsonRpcApiError error}) = - _$GetTransactionError; + _$GetTransactionErrorImpl; factory GetTransactionError.fromJson(Map json) = - _$GetTransactionError.fromJson; + _$GetTransactionErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$GetTransactionErrorCopyWith<_$GetTransactionError> get copyWith => + _$$GetTransactionErrorImplCopyWith<_$GetTransactionErrorImpl> get copyWith => throw _privateConstructorUsedError; } @@ -712,10 +713,10 @@ class _$TxnCopyWithImpl<$Res, $Val extends Txn> implements $TxnCopyWith<$Res> { } /// @nodoc -abstract class _$$InvokeTxnV0CopyWith<$Res> implements $TxnCopyWith<$Res> { - factory _$$InvokeTxnV0CopyWith( - _$InvokeTxnV0 value, $Res Function(_$InvokeTxnV0) then) = - __$$InvokeTxnV0CopyWithImpl<$Res>; +abstract class _$$InvokeTxnV0ImplCopyWith<$Res> implements $TxnCopyWith<$Res> { + factory _$$InvokeTxnV0ImplCopyWith( + _$InvokeTxnV0Impl value, $Res Function(_$InvokeTxnV0Impl) then) = + __$$InvokeTxnV0ImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -731,11 +732,11 @@ abstract class _$$InvokeTxnV0CopyWith<$Res> implements $TxnCopyWith<$Res> { } /// @nodoc -class __$$InvokeTxnV0CopyWithImpl<$Res> - extends _$TxnCopyWithImpl<$Res, _$InvokeTxnV0> - implements _$$InvokeTxnV0CopyWith<$Res> { - __$$InvokeTxnV0CopyWithImpl( - _$InvokeTxnV0 _value, $Res Function(_$InvokeTxnV0) _then) +class __$$InvokeTxnV0ImplCopyWithImpl<$Res> + extends _$TxnCopyWithImpl<$Res, _$InvokeTxnV0Impl> + implements _$$InvokeTxnV0ImplCopyWith<$Res> { + __$$InvokeTxnV0ImplCopyWithImpl( + _$InvokeTxnV0Impl _value, $Res Function(_$InvokeTxnV0Impl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -751,7 +752,7 @@ class __$$InvokeTxnV0CopyWithImpl<$Res> Object? entryPointSelector = freezed, Object? calldata = freezed, }) { - return _then(_$InvokeTxnV0( + return _then(_$InvokeTxnV0Impl( transactionHash: freezed == transactionHash ? _value.transactionHash : transactionHash // ignore: cast_nullable_to_non_nullable @@ -794,8 +795,8 @@ class __$$InvokeTxnV0CopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$InvokeTxnV0 implements InvokeTxnV0 { - const _$InvokeTxnV0( +class _$InvokeTxnV0Impl implements InvokeTxnV0 { + const _$InvokeTxnV0Impl( {required this.transactionHash, @JsonKey(toJson: maxFeeToJson) required this.maxFee, required this.version, @@ -810,8 +811,8 @@ class _$InvokeTxnV0 implements InvokeTxnV0 { _calldata = calldata, $type = $type ?? 'invokeTxnV0'; - factory _$InvokeTxnV0.fromJson(Map json) => - _$$InvokeTxnV0FromJson(json); + factory _$InvokeTxnV0Impl.fromJson(Map json) => + _$$InvokeTxnV0ImplFromJson(json); // start of COMMON_TXN_PROPERTIES @override @@ -862,10 +863,10 @@ class _$InvokeTxnV0 implements InvokeTxnV0 { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$InvokeTxnV0 && + other is _$InvokeTxnV0Impl && (identical(other.transactionHash, transactionHash) || other.transactionHash == transactionHash) && (identical(other.maxFee, maxFee) || other.maxFee == maxFee) && @@ -898,8 +899,8 @@ class _$InvokeTxnV0 implements InvokeTxnV0 { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$InvokeTxnV0CopyWith<_$InvokeTxnV0> get copyWith => - __$$InvokeTxnV0CopyWithImpl<_$InvokeTxnV0>(this, _$identity); + _$$InvokeTxnV0ImplCopyWith<_$InvokeTxnV0Impl> get copyWith => + __$$InvokeTxnV0ImplCopyWithImpl<_$InvokeTxnV0Impl>(this, _$identity); @override @optionalTypeArgs @@ -1151,7 +1152,7 @@ class _$InvokeTxnV0 implements InvokeTxnV0 { @override Map toJson() { - return _$$InvokeTxnV0ToJson( + return _$$InvokeTxnV0ImplToJson( this, ); } @@ -1167,10 +1168,10 @@ abstract class InvokeTxnV0 implements Txn { required final String? type, required final Felt? contractAddress, required final Felt? entryPointSelector, - required final List? calldata}) = _$InvokeTxnV0; + required final List? calldata}) = _$InvokeTxnV0Impl; factory InvokeTxnV0.fromJson(Map json) = - _$InvokeTxnV0.fromJson; + _$InvokeTxnV0Impl.fromJson; @override // start of COMMON_TXN_PROPERTIES Felt? get transactionHash; // start of BROADCASTED_TXN_COMMON_PROPERTIES @@ -1189,15 +1190,15 @@ abstract class InvokeTxnV0 implements Txn { List? get calldata; @override @JsonKey(ignore: true) - _$$InvokeTxnV0CopyWith<_$InvokeTxnV0> get copyWith => + _$$InvokeTxnV0ImplCopyWith<_$InvokeTxnV0Impl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$InvokeTxnV1CopyWith<$Res> implements $TxnCopyWith<$Res> { - factory _$$InvokeTxnV1CopyWith( - _$InvokeTxnV1 value, $Res Function(_$InvokeTxnV1) then) = - __$$InvokeTxnV1CopyWithImpl<$Res>; +abstract class _$$InvokeTxnV1ImplCopyWith<$Res> implements $TxnCopyWith<$Res> { + factory _$$InvokeTxnV1ImplCopyWith( + _$InvokeTxnV1Impl value, $Res Function(_$InvokeTxnV1Impl) then) = + __$$InvokeTxnV1ImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -1212,11 +1213,11 @@ abstract class _$$InvokeTxnV1CopyWith<$Res> implements $TxnCopyWith<$Res> { } /// @nodoc -class __$$InvokeTxnV1CopyWithImpl<$Res> - extends _$TxnCopyWithImpl<$Res, _$InvokeTxnV1> - implements _$$InvokeTxnV1CopyWith<$Res> { - __$$InvokeTxnV1CopyWithImpl( - _$InvokeTxnV1 _value, $Res Function(_$InvokeTxnV1) _then) +class __$$InvokeTxnV1ImplCopyWithImpl<$Res> + extends _$TxnCopyWithImpl<$Res, _$InvokeTxnV1Impl> + implements _$$InvokeTxnV1ImplCopyWith<$Res> { + __$$InvokeTxnV1ImplCopyWithImpl( + _$InvokeTxnV1Impl _value, $Res Function(_$InvokeTxnV1Impl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -1231,7 +1232,7 @@ class __$$InvokeTxnV1CopyWithImpl<$Res> Object? sender_address = freezed, Object? calldata = freezed, }) { - return _then(_$InvokeTxnV1( + return _then(_$InvokeTxnV1Impl( transactionHash: freezed == transactionHash ? _value.transactionHash : transactionHash // ignore: cast_nullable_to_non_nullable @@ -1270,8 +1271,8 @@ class __$$InvokeTxnV1CopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$InvokeTxnV1 implements InvokeTxnV1 { - const _$InvokeTxnV1( +class _$InvokeTxnV1Impl implements InvokeTxnV1 { + const _$InvokeTxnV1Impl( {required this.transactionHash, @JsonKey(toJson: maxFeeToJson) required this.maxFee, required this.version, @@ -1285,8 +1286,8 @@ class _$InvokeTxnV1 implements InvokeTxnV1 { _calldata = calldata, $type = $type ?? 'invokeTxnV1'; - factory _$InvokeTxnV1.fromJson(Map json) => - _$$InvokeTxnV1FromJson(json); + factory _$InvokeTxnV1Impl.fromJson(Map json) => + _$$InvokeTxnV1ImplFromJson(json); // start of COMMON_TXN_PROPERTIES @override @@ -1335,10 +1336,10 @@ class _$InvokeTxnV1 implements InvokeTxnV1 { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$InvokeTxnV1 && + other is _$InvokeTxnV1Impl && (identical(other.transactionHash, transactionHash) || other.transactionHash == transactionHash) && (identical(other.maxFee, maxFee) || other.maxFee == maxFee) && @@ -1368,8 +1369,8 @@ class _$InvokeTxnV1 implements InvokeTxnV1 { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$InvokeTxnV1CopyWith<_$InvokeTxnV1> get copyWith => - __$$InvokeTxnV1CopyWithImpl<_$InvokeTxnV1>(this, _$identity); + _$$InvokeTxnV1ImplCopyWith<_$InvokeTxnV1Impl> get copyWith => + __$$InvokeTxnV1ImplCopyWithImpl<_$InvokeTxnV1Impl>(this, _$identity); @override @optionalTypeArgs @@ -1621,7 +1622,7 @@ class _$InvokeTxnV1 implements InvokeTxnV1 { @override Map toJson() { - return _$$InvokeTxnV1ToJson( + return _$$InvokeTxnV1ImplToJson( this, ); } @@ -1636,10 +1637,10 @@ abstract class InvokeTxnV1 implements Txn { required final Felt? nonce, required final String? type, required final Felt? sender_address, - required final List? calldata}) = _$InvokeTxnV1; + required final List? calldata}) = _$InvokeTxnV1Impl; factory InvokeTxnV1.fromJson(Map json) = - _$InvokeTxnV1.fromJson; + _$InvokeTxnV1Impl.fromJson; @override // start of COMMON_TXN_PROPERTIES Felt? get transactionHash; // start of BROADCASTED_TXN_COMMON_PROPERTIES @@ -1657,15 +1658,15 @@ abstract class InvokeTxnV1 implements Txn { List? get calldata; @override @JsonKey(ignore: true) - _$$InvokeTxnV1CopyWith<_$InvokeTxnV1> get copyWith => + _$$InvokeTxnV1ImplCopyWith<_$InvokeTxnV1Impl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$DeclareTxnCopyWith<$Res> implements $TxnCopyWith<$Res> { - factory _$$DeclareTxnCopyWith( - _$DeclareTxn value, $Res Function(_$DeclareTxn) then) = - __$$DeclareTxnCopyWithImpl<$Res>; +abstract class _$$DeclareTxnImplCopyWith<$Res> implements $TxnCopyWith<$Res> { + factory _$$DeclareTxnImplCopyWith( + _$DeclareTxnImpl value, $Res Function(_$DeclareTxnImpl) then) = + __$$DeclareTxnImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -1680,11 +1681,11 @@ abstract class _$$DeclareTxnCopyWith<$Res> implements $TxnCopyWith<$Res> { } /// @nodoc -class __$$DeclareTxnCopyWithImpl<$Res> - extends _$TxnCopyWithImpl<$Res, _$DeclareTxn> - implements _$$DeclareTxnCopyWith<$Res> { - __$$DeclareTxnCopyWithImpl( - _$DeclareTxn _value, $Res Function(_$DeclareTxn) _then) +class __$$DeclareTxnImplCopyWithImpl<$Res> + extends _$TxnCopyWithImpl<$Res, _$DeclareTxnImpl> + implements _$$DeclareTxnImplCopyWith<$Res> { + __$$DeclareTxnImplCopyWithImpl( + _$DeclareTxnImpl _value, $Res Function(_$DeclareTxnImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -1699,7 +1700,7 @@ class __$$DeclareTxnCopyWithImpl<$Res> Object? classHash = freezed, Object? senderAddress = freezed, }) { - return _then(_$DeclareTxn( + return _then(_$DeclareTxnImpl( transactionHash: freezed == transactionHash ? _value.transactionHash : transactionHash // ignore: cast_nullable_to_non_nullable @@ -1738,8 +1739,8 @@ class __$$DeclareTxnCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$DeclareTxn implements DeclareTxn { - const _$DeclareTxn( +class _$DeclareTxnImpl implements DeclareTxn { + const _$DeclareTxnImpl( {required this.transactionHash, @JsonKey(toJson: maxFeeToJson) required this.maxFee, required this.version, @@ -1752,8 +1753,8 @@ class _$DeclareTxn implements DeclareTxn { : _signature = signature, $type = $type ?? 'declareTxn'; - factory _$DeclareTxn.fromJson(Map json) => - _$$DeclareTxnFromJson(json); + factory _$DeclareTxnImpl.fromJson(Map json) => + _$$DeclareTxnImplFromJson(json); // start of COMMON_TXN_PROPERTIES @override @@ -1794,10 +1795,10 @@ class _$DeclareTxn implements DeclareTxn { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$DeclareTxn && + other is _$DeclareTxnImpl && (identical(other.transactionHash, transactionHash) || other.transactionHash == transactionHash) && (identical(other.maxFee, maxFee) || other.maxFee == maxFee) && @@ -1828,8 +1829,8 @@ class _$DeclareTxn implements DeclareTxn { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$DeclareTxnCopyWith<_$DeclareTxn> get copyWith => - __$$DeclareTxnCopyWithImpl<_$DeclareTxn>(this, _$identity); + _$$DeclareTxnImplCopyWith<_$DeclareTxnImpl> get copyWith => + __$$DeclareTxnImplCopyWithImpl<_$DeclareTxnImpl>(this, _$identity); @override @optionalTypeArgs @@ -2081,7 +2082,7 @@ class _$DeclareTxn implements DeclareTxn { @override Map toJson() { - return _$$DeclareTxnToJson( + return _$$DeclareTxnImplToJson( this, ); } @@ -2096,10 +2097,10 @@ abstract class DeclareTxn implements Txn { required final Felt? nonce, required final String? type, required final Felt? classHash, - required final Felt? senderAddress}) = _$DeclareTxn; + required final Felt? senderAddress}) = _$DeclareTxnImpl; factory DeclareTxn.fromJson(Map json) = - _$DeclareTxn.fromJson; + _$DeclareTxnImpl.fromJson; @override // start of COMMON_TXN_PROPERTIES Felt? get transactionHash; // start of BROADCASTED_TXN_COMMON_PROPERTIES @@ -2116,15 +2117,15 @@ abstract class DeclareTxn implements Txn { Felt? get senderAddress; @override @JsonKey(ignore: true) - _$$DeclareTxnCopyWith<_$DeclareTxn> get copyWith => + _$$DeclareTxnImplCopyWith<_$DeclareTxnImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$DeployTxnCopyWith<$Res> implements $TxnCopyWith<$Res> { - factory _$$DeployTxnCopyWith( - _$DeployTxn value, $Res Function(_$DeployTxn) then) = - __$$DeployTxnCopyWithImpl<$Res>; +abstract class _$$DeployTxnImplCopyWith<$Res> implements $TxnCopyWith<$Res> { + factory _$$DeployTxnImplCopyWith( + _$DeployTxnImpl value, $Res Function(_$DeployTxnImpl) then) = + __$$DeployTxnImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -2137,11 +2138,11 @@ abstract class _$$DeployTxnCopyWith<$Res> implements $TxnCopyWith<$Res> { } /// @nodoc -class __$$DeployTxnCopyWithImpl<$Res> - extends _$TxnCopyWithImpl<$Res, _$DeployTxn> - implements _$$DeployTxnCopyWith<$Res> { - __$$DeployTxnCopyWithImpl( - _$DeployTxn _value, $Res Function(_$DeployTxn) _then) +class __$$DeployTxnImplCopyWithImpl<$Res> + extends _$TxnCopyWithImpl<$Res, _$DeployTxnImpl> + implements _$$DeployTxnImplCopyWith<$Res> { + __$$DeployTxnImplCopyWithImpl( + _$DeployTxnImpl _value, $Res Function(_$DeployTxnImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -2154,7 +2155,7 @@ class __$$DeployTxnCopyWithImpl<$Res> Object? contractAddressSalt = freezed, Object? constructorCalldata = freezed, }) { - return _then(_$DeployTxn( + return _then(_$DeployTxnImpl( transactionHash: freezed == transactionHash ? _value.transactionHash : transactionHash // ignore: cast_nullable_to_non_nullable @@ -2185,8 +2186,8 @@ class __$$DeployTxnCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$DeployTxn implements DeployTxn { - const _$DeployTxn( +class _$DeployTxnImpl implements DeployTxn { + const _$DeployTxnImpl( {required this.transactionHash, required this.classHash, required this.version, @@ -2197,8 +2198,8 @@ class _$DeployTxn implements DeployTxn { : _constructorCalldata = constructorCalldata, $type = $type ?? 'deployTxn'; - factory _$DeployTxn.fromJson(Map json) => - _$$DeployTxnFromJson(json); + factory _$DeployTxnImpl.fromJson(Map json) => + _$$DeployTxnImplFromJson(json); @override final Felt? transactionHash; @@ -2231,10 +2232,10 @@ class _$DeployTxn implements DeployTxn { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$DeployTxn && + other is _$DeployTxnImpl && (identical(other.transactionHash, transactionHash) || other.transactionHash == transactionHash) && (identical(other.classHash, classHash) || @@ -2261,8 +2262,8 @@ class _$DeployTxn implements DeployTxn { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$DeployTxnCopyWith<_$DeployTxn> get copyWith => - __$$DeployTxnCopyWithImpl<_$DeployTxn>(this, _$identity); + _$$DeployTxnImplCopyWith<_$DeployTxnImpl> get copyWith => + __$$DeployTxnImplCopyWithImpl<_$DeployTxnImpl>(this, _$identity); @override @optionalTypeArgs @@ -2514,7 +2515,7 @@ class _$DeployTxn implements DeployTxn { @override Map toJson() { - return _$$DeployTxnToJson( + return _$$DeployTxnImplToJson( this, ); } @@ -2527,9 +2528,10 @@ abstract class DeployTxn implements Txn { required final String? version, required final String? type, required final Felt? contractAddressSalt, - required final List? constructorCalldata}) = _$DeployTxn; + required final List? constructorCalldata}) = _$DeployTxnImpl; - factory DeployTxn.fromJson(Map json) = _$DeployTxn.fromJson; + factory DeployTxn.fromJson(Map json) = + _$DeployTxnImpl.fromJson; @override Felt? get transactionHash; @@ -2542,15 +2544,16 @@ abstract class DeployTxn implements Txn { List? get constructorCalldata; @override @JsonKey(ignore: true) - _$$DeployTxnCopyWith<_$DeployTxn> get copyWith => + _$$DeployTxnImplCopyWith<_$DeployTxnImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$DeployAccountTxnCopyWith<$Res> implements $TxnCopyWith<$Res> { - factory _$$DeployAccountTxnCopyWith( - _$DeployAccountTxn value, $Res Function(_$DeployAccountTxn) then) = - __$$DeployAccountTxnCopyWithImpl<$Res>; +abstract class _$$DeployAccountTxnImplCopyWith<$Res> + implements $TxnCopyWith<$Res> { + factory _$$DeployAccountTxnImplCopyWith(_$DeployAccountTxnImpl value, + $Res Function(_$DeployAccountTxnImpl) then) = + __$$DeployAccountTxnImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -2566,11 +2569,11 @@ abstract class _$$DeployAccountTxnCopyWith<$Res> implements $TxnCopyWith<$Res> { } /// @nodoc -class __$$DeployAccountTxnCopyWithImpl<$Res> - extends _$TxnCopyWithImpl<$Res, _$DeployAccountTxn> - implements _$$DeployAccountTxnCopyWith<$Res> { - __$$DeployAccountTxnCopyWithImpl( - _$DeployAccountTxn _value, $Res Function(_$DeployAccountTxn) _then) +class __$$DeployAccountTxnImplCopyWithImpl<$Res> + extends _$TxnCopyWithImpl<$Res, _$DeployAccountTxnImpl> + implements _$$DeployAccountTxnImplCopyWith<$Res> { + __$$DeployAccountTxnImplCopyWithImpl(_$DeployAccountTxnImpl _value, + $Res Function(_$DeployAccountTxnImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -2586,7 +2589,7 @@ class __$$DeployAccountTxnCopyWithImpl<$Res> Object? classHash = freezed, Object? constructorCalldata = freezed, }) { - return _then(_$DeployAccountTxn( + return _then(_$DeployAccountTxnImpl( transactionHash: freezed == transactionHash ? _value.transactionHash : transactionHash // ignore: cast_nullable_to_non_nullable @@ -2629,8 +2632,8 @@ class __$$DeployAccountTxnCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$DeployAccountTxn implements DeployAccountTxn { - const _$DeployAccountTxn( +class _$DeployAccountTxnImpl implements DeployAccountTxn { + const _$DeployAccountTxnImpl( {required this.transactionHash, @JsonKey(toJson: maxFeeToJson) required this.maxFee, required this.version, @@ -2645,8 +2648,8 @@ class _$DeployAccountTxn implements DeployAccountTxn { _constructorCalldata = constructorCalldata, $type = $type ?? 'deployAccountTxn'; - factory _$DeployAccountTxn.fromJson(Map json) => - _$$DeployAccountTxnFromJson(json); + factory _$DeployAccountTxnImpl.fromJson(Map json) => + _$$DeployAccountTxnImplFromJson(json); // start of COMMON_TXN_PROPERTIES @override @@ -2698,10 +2701,10 @@ class _$DeployAccountTxn implements DeployAccountTxn { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$DeployAccountTxn && + other is _$DeployAccountTxnImpl && (identical(other.transactionHash, transactionHash) || other.transactionHash == transactionHash) && (identical(other.maxFee, maxFee) || other.maxFee == maxFee) && @@ -2735,8 +2738,9 @@ class _$DeployAccountTxn implements DeployAccountTxn { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$DeployAccountTxnCopyWith<_$DeployAccountTxn> get copyWith => - __$$DeployAccountTxnCopyWithImpl<_$DeployAccountTxn>(this, _$identity); + _$$DeployAccountTxnImplCopyWith<_$DeployAccountTxnImpl> get copyWith => + __$$DeployAccountTxnImplCopyWithImpl<_$DeployAccountTxnImpl>( + this, _$identity); @override @optionalTypeArgs @@ -2988,7 +2992,7 @@ class _$DeployAccountTxn implements DeployAccountTxn { @override Map toJson() { - return _$$DeployAccountTxnToJson( + return _$$DeployAccountTxnImplToJson( this, ); } @@ -3004,10 +3008,10 @@ abstract class DeployAccountTxn implements Txn { required final String? type, required final Felt? contractAddressSalt, required final Felt? classHash, - required final List? constructorCalldata}) = _$DeployAccountTxn; + required final List? constructorCalldata}) = _$DeployAccountTxnImpl; factory DeployAccountTxn.fromJson(Map json) = - _$DeployAccountTxn.fromJson; + _$DeployAccountTxnImpl.fromJson; @override // start of COMMON_TXN_PROPERTIES Felt? get transactionHash; // start of BROADCASTED_TXN_COMMON_PROPERTIES @@ -3026,15 +3030,15 @@ abstract class DeployAccountTxn implements Txn { List? get constructorCalldata; @override @JsonKey(ignore: true) - _$$DeployAccountTxnCopyWith<_$DeployAccountTxn> get copyWith => + _$$DeployAccountTxnImplCopyWith<_$DeployAccountTxnImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$L1HandlerTxnCopyWith<$Res> implements $TxnCopyWith<$Res> { - factory _$$L1HandlerTxnCopyWith( - _$L1HandlerTxn value, $Res Function(_$L1HandlerTxn) then) = - __$$L1HandlerTxnCopyWithImpl<$Res>; +abstract class _$$L1HandlerTxnImplCopyWith<$Res> implements $TxnCopyWith<$Res> { + factory _$$L1HandlerTxnImplCopyWith( + _$L1HandlerTxnImpl value, $Res Function(_$L1HandlerTxnImpl) then) = + __$$L1HandlerTxnImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -3048,11 +3052,11 @@ abstract class _$$L1HandlerTxnCopyWith<$Res> implements $TxnCopyWith<$Res> { } /// @nodoc -class __$$L1HandlerTxnCopyWithImpl<$Res> - extends _$TxnCopyWithImpl<$Res, _$L1HandlerTxn> - implements _$$L1HandlerTxnCopyWith<$Res> { - __$$L1HandlerTxnCopyWithImpl( - _$L1HandlerTxn _value, $Res Function(_$L1HandlerTxn) _then) +class __$$L1HandlerTxnImplCopyWithImpl<$Res> + extends _$TxnCopyWithImpl<$Res, _$L1HandlerTxnImpl> + implements _$$L1HandlerTxnImplCopyWith<$Res> { + __$$L1HandlerTxnImplCopyWithImpl( + _$L1HandlerTxnImpl _value, $Res Function(_$L1HandlerTxnImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -3066,7 +3070,7 @@ class __$$L1HandlerTxnCopyWithImpl<$Res> Object? entryPointSelector = freezed, Object? calldata = freezed, }) { - return _then(_$L1HandlerTxn( + return _then(_$L1HandlerTxnImpl( transactionHash: freezed == transactionHash ? _value.transactionHash : transactionHash // ignore: cast_nullable_to_non_nullable @@ -3101,8 +3105,8 @@ class __$$L1HandlerTxnCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$L1HandlerTxn implements L1HandlerTxn { - const _$L1HandlerTxn( +class _$L1HandlerTxnImpl implements L1HandlerTxn { + const _$L1HandlerTxnImpl( {required this.transactionHash, required this.version, required this.nonce, @@ -3114,8 +3118,8 @@ class _$L1HandlerTxn implements L1HandlerTxn { : _calldata = calldata, $type = $type ?? 'l1HandlerTxn'; - factory _$L1HandlerTxn.fromJson(Map json) => - _$$L1HandlerTxnFromJson(json); + factory _$L1HandlerTxnImpl.fromJson(Map json) => + _$$L1HandlerTxnImplFromJson(json); @override final Felt? transactionHash; @@ -3149,10 +3153,10 @@ class _$L1HandlerTxn implements L1HandlerTxn { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$L1HandlerTxn && + other is _$L1HandlerTxnImpl && (identical(other.transactionHash, transactionHash) || other.transactionHash == transactionHash) && (identical(other.version, version) || other.version == version) && @@ -3180,8 +3184,8 @@ class _$L1HandlerTxn implements L1HandlerTxn { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$L1HandlerTxnCopyWith<_$L1HandlerTxn> get copyWith => - __$$L1HandlerTxnCopyWithImpl<_$L1HandlerTxn>(this, _$identity); + _$$L1HandlerTxnImplCopyWith<_$L1HandlerTxnImpl> get copyWith => + __$$L1HandlerTxnImplCopyWithImpl<_$L1HandlerTxnImpl>(this, _$identity); @override @optionalTypeArgs @@ -3433,7 +3437,7 @@ class _$L1HandlerTxn implements L1HandlerTxn { @override Map toJson() { - return _$$L1HandlerTxnToJson( + return _$$L1HandlerTxnImplToJson( this, ); } @@ -3447,10 +3451,10 @@ abstract class L1HandlerTxn implements Txn { required final String? type, required final Felt? contractAddress, required final Felt? entryPointSelector, - required final List? calldata}) = _$L1HandlerTxn; + required final List? calldata}) = _$L1HandlerTxnImpl; factory L1HandlerTxn.fromJson(Map json) = - _$L1HandlerTxn.fromJson; + _$L1HandlerTxnImpl.fromJson; @override Felt? get transactionHash; @@ -3464,6 +3468,6 @@ abstract class L1HandlerTxn implements Txn { List? get calldata; @override @JsonKey(ignore: true) - _$$L1HandlerTxnCopyWith<_$L1HandlerTxn> get copyWith => + _$$L1HandlerTxnImplCopyWith<_$L1HandlerTxnImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/get_transaction.g.dart b/packages/starknet_provider/lib/src/model/get_transaction.g.dart index 1de2e230..cc2fe669 100644 --- a/packages/starknet_provider/lib/src/model/get_transaction.g.dart +++ b/packages/starknet_provider/lib/src/model/get_transaction.g.dart @@ -6,36 +6,36 @@ part of 'get_transaction.dart'; // JsonSerializableGenerator // ************************************************************************** -_$GetTransactionResult _$$GetTransactionResultFromJson( +_$GetTransactionResultImpl _$$GetTransactionResultImplFromJson( Map json) => - _$GetTransactionResult( + _$GetTransactionResultImpl( result: Txn.fromJson(json['result'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetTransactionResultToJson( - _$GetTransactionResult instance) => +Map _$$GetTransactionResultImplToJson( + _$GetTransactionResultImpl instance) => { 'result': instance.result.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$GetTransactionError _$$GetTransactionErrorFromJson( +_$GetTransactionErrorImpl _$$GetTransactionErrorImplFromJson( Map json) => - _$GetTransactionError( + _$GetTransactionErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetTransactionErrorToJson( - _$GetTransactionError instance) => +Map _$$GetTransactionErrorImplToJson( + _$GetTransactionErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$InvokeTxnV0 _$$InvokeTxnV0FromJson(Map json) => - _$InvokeTxnV0( +_$InvokeTxnV0Impl _$$InvokeTxnV0ImplFromJson(Map json) => + _$InvokeTxnV0Impl( transactionHash: json['transaction_hash'] == null ? null : Felt.fromJson(json['transaction_hash'] as String), @@ -61,7 +61,7 @@ _$InvokeTxnV0 _$$InvokeTxnV0FromJson(Map json) => $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$InvokeTxnV0ToJson(_$InvokeTxnV0 instance) => +Map _$$InvokeTxnV0ImplToJson(_$InvokeTxnV0Impl instance) => { 'transaction_hash': instance.transactionHash?.toJson(), 'max_fee': maxFeeToJson(instance.maxFee), @@ -75,8 +75,8 @@ Map _$$InvokeTxnV0ToJson(_$InvokeTxnV0 instance) => 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$InvokeTxnV1 _$$InvokeTxnV1FromJson(Map json) => - _$InvokeTxnV1( +_$InvokeTxnV1Impl _$$InvokeTxnV1ImplFromJson(Map json) => + _$InvokeTxnV1Impl( transactionHash: json['transaction_hash'] == null ? null : Felt.fromJson(json['transaction_hash'] as String), @@ -99,7 +99,7 @@ _$InvokeTxnV1 _$$InvokeTxnV1FromJson(Map json) => $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$InvokeTxnV1ToJson(_$InvokeTxnV1 instance) => +Map _$$InvokeTxnV1ImplToJson(_$InvokeTxnV1Impl instance) => { 'transaction_hash': instance.transactionHash?.toJson(), 'max_fee': maxFeeToJson(instance.maxFee), @@ -112,7 +112,8 @@ Map _$$InvokeTxnV1ToJson(_$InvokeTxnV1 instance) => 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$DeclareTxn _$$DeclareTxnFromJson(Map json) => _$DeclareTxn( +_$DeclareTxnImpl _$$DeclareTxnImplFromJson(Map json) => + _$DeclareTxnImpl( transactionHash: json['transaction_hash'] == null ? null : Felt.fromJson(json['transaction_hash'] as String), @@ -135,7 +136,7 @@ _$DeclareTxn _$$DeclareTxnFromJson(Map json) => _$DeclareTxn( $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$DeclareTxnToJson(_$DeclareTxn instance) => +Map _$$DeclareTxnImplToJson(_$DeclareTxnImpl instance) => { 'transaction_hash': instance.transactionHash?.toJson(), 'max_fee': maxFeeToJson(instance.maxFee), @@ -148,7 +149,8 @@ Map _$$DeclareTxnToJson(_$DeclareTxn instance) => 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$DeployTxn _$$DeployTxnFromJson(Map json) => _$DeployTxn( +_$DeployTxnImpl _$$DeployTxnImplFromJson(Map json) => + _$DeployTxnImpl( transactionHash: json['transaction_hash'] == null ? null : Felt.fromJson(json['transaction_hash'] as String), @@ -166,7 +168,7 @@ _$DeployTxn _$$DeployTxnFromJson(Map json) => _$DeployTxn( $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$DeployTxnToJson(_$DeployTxn instance) => +Map _$$DeployTxnImplToJson(_$DeployTxnImpl instance) => { 'transaction_hash': instance.transactionHash?.toJson(), 'class_hash': instance.classHash?.toJson(), @@ -178,8 +180,9 @@ Map _$$DeployTxnToJson(_$DeployTxn instance) => 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$DeployAccountTxn _$$DeployAccountTxnFromJson(Map json) => - _$DeployAccountTxn( +_$DeployAccountTxnImpl _$$DeployAccountTxnImplFromJson( + Map json) => + _$DeployAccountTxnImpl( transactionHash: json['transaction_hash'] == null ? null : Felt.fromJson(json['transaction_hash'] as String), @@ -205,7 +208,8 @@ _$DeployAccountTxn _$$DeployAccountTxnFromJson(Map json) => $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$DeployAccountTxnToJson(_$DeployAccountTxn instance) => +Map _$$DeployAccountTxnImplToJson( + _$DeployAccountTxnImpl instance) => { 'transaction_hash': instance.transactionHash?.toJson(), 'max_fee': maxFeeToJson(instance.maxFee), @@ -220,8 +224,8 @@ Map _$$DeployAccountTxnToJson(_$DeployAccountTxn instance) => 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$L1HandlerTxn _$$L1HandlerTxnFromJson(Map json) => - _$L1HandlerTxn( +_$L1HandlerTxnImpl _$$L1HandlerTxnImplFromJson(Map json) => + _$L1HandlerTxnImpl( transactionHash: json['transaction_hash'] == null ? null : Felt.fromJson(json['transaction_hash'] as String), @@ -241,7 +245,7 @@ _$L1HandlerTxn _$$L1HandlerTxnFromJson(Map json) => $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$L1HandlerTxnToJson(_$L1HandlerTxn instance) => +Map _$$L1HandlerTxnImplToJson(_$L1HandlerTxnImpl instance) => { 'transaction_hash': instance.transactionHash?.toJson(), 'version': instance.version, diff --git a/packages/starknet_provider/lib/src/model/get_transaction_receipt.freezed.dart b/packages/starknet_provider/lib/src/model/get_transaction_receipt.freezed.dart index 73449c40..75a203df 100644 --- a/packages/starknet_provider/lib/src/model/get_transaction_receipt.freezed.dart +++ b/packages/starknet_provider/lib/src/model/get_transaction_receipt.freezed.dart @@ -12,7 +12,7 @@ part of 'get_transaction_receipt.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); GetTransactionReceipt _$GetTransactionReceiptFromJson( Map json) { @@ -94,11 +94,11 @@ class _$GetTransactionReceiptCopyWithImpl<$Res, } /// @nodoc -abstract class _$$GetTransactionReceiptResultCopyWith<$Res> { - factory _$$GetTransactionReceiptResultCopyWith( - _$GetTransactionReceiptResult value, - $Res Function(_$GetTransactionReceiptResult) then) = - __$$GetTransactionReceiptResultCopyWithImpl<$Res>; +abstract class _$$GetTransactionReceiptResultImplCopyWith<$Res> { + factory _$$GetTransactionReceiptResultImplCopyWith( + _$GetTransactionReceiptResultImpl value, + $Res Function(_$GetTransactionReceiptResultImpl) then) = + __$$GetTransactionReceiptResultImplCopyWithImpl<$Res>; @useResult $Res call({TxnReceipt result}); @@ -106,13 +106,13 @@ abstract class _$$GetTransactionReceiptResultCopyWith<$Res> { } /// @nodoc -class __$$GetTransactionReceiptResultCopyWithImpl<$Res> +class __$$GetTransactionReceiptResultImplCopyWithImpl<$Res> extends _$GetTransactionReceiptCopyWithImpl<$Res, - _$GetTransactionReceiptResult> - implements _$$GetTransactionReceiptResultCopyWith<$Res> { - __$$GetTransactionReceiptResultCopyWithImpl( - _$GetTransactionReceiptResult _value, - $Res Function(_$GetTransactionReceiptResult) _then) + _$GetTransactionReceiptResultImpl> + implements _$$GetTransactionReceiptResultImplCopyWith<$Res> { + __$$GetTransactionReceiptResultImplCopyWithImpl( + _$GetTransactionReceiptResultImpl _value, + $Res Function(_$GetTransactionReceiptResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -120,7 +120,7 @@ class __$$GetTransactionReceiptResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$GetTransactionReceiptResult( + return _then(_$GetTransactionReceiptResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -139,13 +139,14 @@ class __$$GetTransactionReceiptResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetTransactionReceiptResult implements GetTransactionReceiptResult { - const _$GetTransactionReceiptResult( +class _$GetTransactionReceiptResultImpl implements GetTransactionReceiptResult { + const _$GetTransactionReceiptResultImpl( {required this.result, final String? $type}) : $type = $type ?? 'result'; - factory _$GetTransactionReceiptResult.fromJson(Map json) => - _$$GetTransactionReceiptResultFromJson(json); + factory _$GetTransactionReceiptResultImpl.fromJson( + Map json) => + _$$GetTransactionReceiptResultImplFromJson(json); @override final TxnReceipt result; @@ -159,10 +160,10 @@ class _$GetTransactionReceiptResult implements GetTransactionReceiptResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetTransactionReceiptResult && + other is _$GetTransactionReceiptResultImpl && (identical(other.result, result) || other.result == result)); } @@ -173,9 +174,9 @@ class _$GetTransactionReceiptResult implements GetTransactionReceiptResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetTransactionReceiptResultCopyWith<_$GetTransactionReceiptResult> - get copyWith => __$$GetTransactionReceiptResultCopyWithImpl< - _$GetTransactionReceiptResult>(this, _$identity); + _$$GetTransactionReceiptResultImplCopyWith<_$GetTransactionReceiptResultImpl> + get copyWith => __$$GetTransactionReceiptResultImplCopyWithImpl< + _$GetTransactionReceiptResultImpl>(this, _$identity); @override @optionalTypeArgs @@ -241,7 +242,7 @@ class _$GetTransactionReceiptResult implements GetTransactionReceiptResult { @override Map toJson() { - return _$$GetTransactionReceiptResultToJson( + return _$$GetTransactionReceiptResultImplToJson( this, ); } @@ -249,23 +250,23 @@ class _$GetTransactionReceiptResult implements GetTransactionReceiptResult { abstract class GetTransactionReceiptResult implements GetTransactionReceipt { const factory GetTransactionReceiptResult( - {required final TxnReceipt result}) = _$GetTransactionReceiptResult; + {required final TxnReceipt result}) = _$GetTransactionReceiptResultImpl; factory GetTransactionReceiptResult.fromJson(Map json) = - _$GetTransactionReceiptResult.fromJson; + _$GetTransactionReceiptResultImpl.fromJson; TxnReceipt get result; @JsonKey(ignore: true) - _$$GetTransactionReceiptResultCopyWith<_$GetTransactionReceiptResult> + _$$GetTransactionReceiptResultImplCopyWith<_$GetTransactionReceiptResultImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$GetTransactionReceiptErrorCopyWith<$Res> { - factory _$$GetTransactionReceiptErrorCopyWith( - _$GetTransactionReceiptError value, - $Res Function(_$GetTransactionReceiptError) then) = - __$$GetTransactionReceiptErrorCopyWithImpl<$Res>; +abstract class _$$GetTransactionReceiptErrorImplCopyWith<$Res> { + factory _$$GetTransactionReceiptErrorImplCopyWith( + _$GetTransactionReceiptErrorImpl value, + $Res Function(_$GetTransactionReceiptErrorImpl) then) = + __$$GetTransactionReceiptErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -273,13 +274,13 @@ abstract class _$$GetTransactionReceiptErrorCopyWith<$Res> { } /// @nodoc -class __$$GetTransactionReceiptErrorCopyWithImpl<$Res> +class __$$GetTransactionReceiptErrorImplCopyWithImpl<$Res> extends _$GetTransactionReceiptCopyWithImpl<$Res, - _$GetTransactionReceiptError> - implements _$$GetTransactionReceiptErrorCopyWith<$Res> { - __$$GetTransactionReceiptErrorCopyWithImpl( - _$GetTransactionReceiptError _value, - $Res Function(_$GetTransactionReceiptError) _then) + _$GetTransactionReceiptErrorImpl> + implements _$$GetTransactionReceiptErrorImplCopyWith<$Res> { + __$$GetTransactionReceiptErrorImplCopyWithImpl( + _$GetTransactionReceiptErrorImpl _value, + $Res Function(_$GetTransactionReceiptErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -287,7 +288,7 @@ class __$$GetTransactionReceiptErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$GetTransactionReceiptError( + return _then(_$GetTransactionReceiptErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -306,12 +307,14 @@ class __$$GetTransactionReceiptErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$GetTransactionReceiptError implements GetTransactionReceiptError { - const _$GetTransactionReceiptError({required this.error, final String? $type}) +class _$GetTransactionReceiptErrorImpl implements GetTransactionReceiptError { + const _$GetTransactionReceiptErrorImpl( + {required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$GetTransactionReceiptError.fromJson(Map json) => - _$$GetTransactionReceiptErrorFromJson(json); + factory _$GetTransactionReceiptErrorImpl.fromJson( + Map json) => + _$$GetTransactionReceiptErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -325,10 +328,10 @@ class _$GetTransactionReceiptError implements GetTransactionReceiptError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$GetTransactionReceiptError && + other is _$GetTransactionReceiptErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -339,9 +342,9 @@ class _$GetTransactionReceiptError implements GetTransactionReceiptError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$GetTransactionReceiptErrorCopyWith<_$GetTransactionReceiptError> - get copyWith => __$$GetTransactionReceiptErrorCopyWithImpl< - _$GetTransactionReceiptError>(this, _$identity); + _$$GetTransactionReceiptErrorImplCopyWith<_$GetTransactionReceiptErrorImpl> + get copyWith => __$$GetTransactionReceiptErrorImplCopyWithImpl< + _$GetTransactionReceiptErrorImpl>(this, _$identity); @override @optionalTypeArgs @@ -407,7 +410,7 @@ class _$GetTransactionReceiptError implements GetTransactionReceiptError { @override Map toJson() { - return _$$GetTransactionReceiptErrorToJson( + return _$$GetTransactionReceiptErrorImplToJson( this, ); } @@ -415,14 +418,15 @@ class _$GetTransactionReceiptError implements GetTransactionReceiptError { abstract class GetTransactionReceiptError implements GetTransactionReceipt { const factory GetTransactionReceiptError( - {required final JsonRpcApiError error}) = _$GetTransactionReceiptError; + {required final JsonRpcApiError error}) = + _$GetTransactionReceiptErrorImpl; factory GetTransactionReceiptError.fromJson(Map json) = - _$GetTransactionReceiptError.fromJson; + _$GetTransactionReceiptErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$GetTransactionReceiptErrorCopyWith<_$GetTransactionReceiptError> + _$$GetTransactionReceiptErrorImplCopyWith<_$GetTransactionReceiptErrorImpl> get copyWith => throw _privateConstructorUsedError; } @@ -766,11 +770,11 @@ class _$TxnReceiptCopyWithImpl<$Res, $Val extends TxnReceipt> } /// @nodoc -abstract class _$$InvokeTxnReceiptCopyWith<$Res> +abstract class _$$InvokeTxnReceiptImplCopyWith<$Res> implements $TxnReceiptCopyWith<$Res> { - factory _$$InvokeTxnReceiptCopyWith( - _$InvokeTxnReceipt value, $Res Function(_$InvokeTxnReceipt) then) = - __$$InvokeTxnReceiptCopyWithImpl<$Res>; + factory _$$InvokeTxnReceiptImplCopyWith(_$InvokeTxnReceiptImpl value, + $Res Function(_$InvokeTxnReceiptImpl) then) = + __$$InvokeTxnReceiptImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -785,11 +789,11 @@ abstract class _$$InvokeTxnReceiptCopyWith<$Res> } /// @nodoc -class __$$InvokeTxnReceiptCopyWithImpl<$Res> - extends _$TxnReceiptCopyWithImpl<$Res, _$InvokeTxnReceipt> - implements _$$InvokeTxnReceiptCopyWith<$Res> { - __$$InvokeTxnReceiptCopyWithImpl( - _$InvokeTxnReceipt _value, $Res Function(_$InvokeTxnReceipt) _then) +class __$$InvokeTxnReceiptImplCopyWithImpl<$Res> + extends _$TxnReceiptCopyWithImpl<$Res, _$InvokeTxnReceiptImpl> + implements _$$InvokeTxnReceiptImplCopyWith<$Res> { + __$$InvokeTxnReceiptImplCopyWithImpl(_$InvokeTxnReceiptImpl _value, + $Res Function(_$InvokeTxnReceiptImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -804,7 +808,7 @@ class __$$InvokeTxnReceiptCopyWithImpl<$Res> Object? messagesSent = null, Object? events = null, }) { - return _then(_$InvokeTxnReceipt( + return _then(_$InvokeTxnReceiptImpl( transactionHash: null == transactionHash ? _value.transactionHash : transactionHash // ignore: cast_nullable_to_non_nullable @@ -843,8 +847,8 @@ class __$$InvokeTxnReceiptCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$InvokeTxnReceipt implements InvokeTxnReceipt { - const _$InvokeTxnReceipt( +class _$InvokeTxnReceiptImpl implements InvokeTxnReceipt { + const _$InvokeTxnReceiptImpl( {required this.transactionHash, required this.actualFee, required this.status, @@ -858,8 +862,8 @@ class _$InvokeTxnReceipt implements InvokeTxnReceipt { _events = events, $type = $type ?? 'invokeTxnReceipt'; - factory _$InvokeTxnReceipt.fromJson(Map json) => - _$$InvokeTxnReceiptFromJson(json); + factory _$InvokeTxnReceiptImpl.fromJson(Map json) => + _$$InvokeTxnReceiptImplFromJson(json); // start of COMMON_RECEIPT_PROPERTIES @override @@ -899,10 +903,10 @@ class _$InvokeTxnReceipt implements InvokeTxnReceipt { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$InvokeTxnReceipt && + other is _$InvokeTxnReceiptImpl && (identical(other.transactionHash, transactionHash) || other.transactionHash == transactionHash) && (identical(other.actualFee, actualFee) || @@ -934,8 +938,9 @@ class _$InvokeTxnReceipt implements InvokeTxnReceipt { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$InvokeTxnReceiptCopyWith<_$InvokeTxnReceipt> get copyWith => - __$$InvokeTxnReceiptCopyWithImpl<_$InvokeTxnReceipt>(this, _$identity); + _$$InvokeTxnReceiptImplCopyWith<_$InvokeTxnReceiptImpl> get copyWith => + __$$InvokeTxnReceiptImplCopyWithImpl<_$InvokeTxnReceiptImpl>( + this, _$identity); @override @optionalTypeArgs @@ -1207,7 +1212,7 @@ class _$InvokeTxnReceipt implements InvokeTxnReceipt { @override Map toJson() { - return _$$InvokeTxnReceiptToJson( + return _$$InvokeTxnReceiptImplToJson( this, ); } @@ -1222,10 +1227,10 @@ abstract class InvokeTxnReceipt implements TxnReceipt { final int? blockNumber, required final String type, required final List messagesSent, - required final List events}) = _$InvokeTxnReceipt; + required final List events}) = _$InvokeTxnReceiptImpl; factory InvokeTxnReceipt.fromJson(Map json) = - _$InvokeTxnReceipt.fromJson; + _$InvokeTxnReceiptImpl.fromJson; @override // start of COMMON_RECEIPT_PROPERTIES Felt get transactionHash; @@ -1242,16 +1247,16 @@ abstract class InvokeTxnReceipt implements TxnReceipt { List get events; @override @JsonKey(ignore: true) - _$$InvokeTxnReceiptCopyWith<_$InvokeTxnReceipt> get copyWith => + _$$InvokeTxnReceiptImplCopyWith<_$InvokeTxnReceiptImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$DeclareTxnReceiptCopyWith<$Res> +abstract class _$$DeclareTxnReceiptImplCopyWith<$Res> implements $TxnReceiptCopyWith<$Res> { - factory _$$DeclareTxnReceiptCopyWith( - _$DeclareTxnReceipt value, $Res Function(_$DeclareTxnReceipt) then) = - __$$DeclareTxnReceiptCopyWithImpl<$Res>; + factory _$$DeclareTxnReceiptImplCopyWith(_$DeclareTxnReceiptImpl value, + $Res Function(_$DeclareTxnReceiptImpl) then) = + __$$DeclareTxnReceiptImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -1266,11 +1271,11 @@ abstract class _$$DeclareTxnReceiptCopyWith<$Res> } /// @nodoc -class __$$DeclareTxnReceiptCopyWithImpl<$Res> - extends _$TxnReceiptCopyWithImpl<$Res, _$DeclareTxnReceipt> - implements _$$DeclareTxnReceiptCopyWith<$Res> { - __$$DeclareTxnReceiptCopyWithImpl( - _$DeclareTxnReceipt _value, $Res Function(_$DeclareTxnReceipt) _then) +class __$$DeclareTxnReceiptImplCopyWithImpl<$Res> + extends _$TxnReceiptCopyWithImpl<$Res, _$DeclareTxnReceiptImpl> + implements _$$DeclareTxnReceiptImplCopyWith<$Res> { + __$$DeclareTxnReceiptImplCopyWithImpl(_$DeclareTxnReceiptImpl _value, + $Res Function(_$DeclareTxnReceiptImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -1285,7 +1290,7 @@ class __$$DeclareTxnReceiptCopyWithImpl<$Res> Object? messagesSent = null, Object? events = null, }) { - return _then(_$DeclareTxnReceipt( + return _then(_$DeclareTxnReceiptImpl( transactionHash: null == transactionHash ? _value.transactionHash : transactionHash // ignore: cast_nullable_to_non_nullable @@ -1324,8 +1329,8 @@ class __$$DeclareTxnReceiptCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$DeclareTxnReceipt implements DeclareTxnReceipt { - const _$DeclareTxnReceipt( +class _$DeclareTxnReceiptImpl implements DeclareTxnReceipt { + const _$DeclareTxnReceiptImpl( {required this.transactionHash, required this.actualFee, required this.status, @@ -1339,8 +1344,8 @@ class _$DeclareTxnReceipt implements DeclareTxnReceipt { _events = events, $type = $type ?? 'declareTxnReceipt'; - factory _$DeclareTxnReceipt.fromJson(Map json) => - _$$DeclareTxnReceiptFromJson(json); + factory _$DeclareTxnReceiptImpl.fromJson(Map json) => + _$$DeclareTxnReceiptImplFromJson(json); // start of COMMON_RECEIPT_PROPERTIES @override @@ -1380,10 +1385,10 @@ class _$DeclareTxnReceipt implements DeclareTxnReceipt { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$DeclareTxnReceipt && + other is _$DeclareTxnReceiptImpl && (identical(other.transactionHash, transactionHash) || other.transactionHash == transactionHash) && (identical(other.actualFee, actualFee) || @@ -1415,8 +1420,9 @@ class _$DeclareTxnReceipt implements DeclareTxnReceipt { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$DeclareTxnReceiptCopyWith<_$DeclareTxnReceipt> get copyWith => - __$$DeclareTxnReceiptCopyWithImpl<_$DeclareTxnReceipt>(this, _$identity); + _$$DeclareTxnReceiptImplCopyWith<_$DeclareTxnReceiptImpl> get copyWith => + __$$DeclareTxnReceiptImplCopyWithImpl<_$DeclareTxnReceiptImpl>( + this, _$identity); @override @optionalTypeArgs @@ -1688,7 +1694,7 @@ class _$DeclareTxnReceipt implements DeclareTxnReceipt { @override Map toJson() { - return _$$DeclareTxnReceiptToJson( + return _$$DeclareTxnReceiptImplToJson( this, ); } @@ -1703,10 +1709,10 @@ abstract class DeclareTxnReceipt implements TxnReceipt { final int? blockNumber, required final String type, required final List messagesSent, - required final List events}) = _$DeclareTxnReceipt; + required final List events}) = _$DeclareTxnReceiptImpl; factory DeclareTxnReceipt.fromJson(Map json) = - _$DeclareTxnReceipt.fromJson; + _$DeclareTxnReceiptImpl.fromJson; @override // start of COMMON_RECEIPT_PROPERTIES Felt get transactionHash; @@ -1723,16 +1729,16 @@ abstract class DeclareTxnReceipt implements TxnReceipt { List get events; @override @JsonKey(ignore: true) - _$$DeclareTxnReceiptCopyWith<_$DeclareTxnReceipt> get copyWith => + _$$DeclareTxnReceiptImplCopyWith<_$DeclareTxnReceiptImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$L1HandlerTxnReceiptCopyWith<$Res> +abstract class _$$L1HandlerTxnReceiptImplCopyWith<$Res> implements $TxnReceiptCopyWith<$Res> { - factory _$$L1HandlerTxnReceiptCopyWith(_$L1HandlerTxnReceipt value, - $Res Function(_$L1HandlerTxnReceipt) then) = - __$$L1HandlerTxnReceiptCopyWithImpl<$Res>; + factory _$$L1HandlerTxnReceiptImplCopyWith(_$L1HandlerTxnReceiptImpl value, + $Res Function(_$L1HandlerTxnReceiptImpl) then) = + __$$L1HandlerTxnReceiptImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -1747,11 +1753,11 @@ abstract class _$$L1HandlerTxnReceiptCopyWith<$Res> } /// @nodoc -class __$$L1HandlerTxnReceiptCopyWithImpl<$Res> - extends _$TxnReceiptCopyWithImpl<$Res, _$L1HandlerTxnReceipt> - implements _$$L1HandlerTxnReceiptCopyWith<$Res> { - __$$L1HandlerTxnReceiptCopyWithImpl( - _$L1HandlerTxnReceipt _value, $Res Function(_$L1HandlerTxnReceipt) _then) +class __$$L1HandlerTxnReceiptImplCopyWithImpl<$Res> + extends _$TxnReceiptCopyWithImpl<$Res, _$L1HandlerTxnReceiptImpl> + implements _$$L1HandlerTxnReceiptImplCopyWith<$Res> { + __$$L1HandlerTxnReceiptImplCopyWithImpl(_$L1HandlerTxnReceiptImpl _value, + $Res Function(_$L1HandlerTxnReceiptImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -1766,7 +1772,7 @@ class __$$L1HandlerTxnReceiptCopyWithImpl<$Res> Object? messagesSent = null, Object? events = null, }) { - return _then(_$L1HandlerTxnReceipt( + return _then(_$L1HandlerTxnReceiptImpl( transactionHash: null == transactionHash ? _value.transactionHash : transactionHash // ignore: cast_nullable_to_non_nullable @@ -1805,8 +1811,8 @@ class __$$L1HandlerTxnReceiptCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$L1HandlerTxnReceipt implements L1HandlerTxnReceipt { - const _$L1HandlerTxnReceipt( +class _$L1HandlerTxnReceiptImpl implements L1HandlerTxnReceipt { + const _$L1HandlerTxnReceiptImpl( {required this.transactionHash, required this.actualFee, required this.status, @@ -1820,8 +1826,8 @@ class _$L1HandlerTxnReceipt implements L1HandlerTxnReceipt { _events = events, $type = $type ?? 'l1HandlerTxnReceipt'; - factory _$L1HandlerTxnReceipt.fromJson(Map json) => - _$$L1HandlerTxnReceiptFromJson(json); + factory _$L1HandlerTxnReceiptImpl.fromJson(Map json) => + _$$L1HandlerTxnReceiptImplFromJson(json); // start of COMMON_RECEIPT_PROPERTIES @override @@ -1861,10 +1867,10 @@ class _$L1HandlerTxnReceipt implements L1HandlerTxnReceipt { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$L1HandlerTxnReceipt && + other is _$L1HandlerTxnReceiptImpl && (identical(other.transactionHash, transactionHash) || other.transactionHash == transactionHash) && (identical(other.actualFee, actualFee) || @@ -1896,8 +1902,8 @@ class _$L1HandlerTxnReceipt implements L1HandlerTxnReceipt { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$L1HandlerTxnReceiptCopyWith<_$L1HandlerTxnReceipt> get copyWith => - __$$L1HandlerTxnReceiptCopyWithImpl<_$L1HandlerTxnReceipt>( + _$$L1HandlerTxnReceiptImplCopyWith<_$L1HandlerTxnReceiptImpl> get copyWith => + __$$L1HandlerTxnReceiptImplCopyWithImpl<_$L1HandlerTxnReceiptImpl>( this, _$identity); @override @@ -2170,7 +2176,7 @@ class _$L1HandlerTxnReceipt implements L1HandlerTxnReceipt { @override Map toJson() { - return _$$L1HandlerTxnReceiptToJson( + return _$$L1HandlerTxnReceiptImplToJson( this, ); } @@ -2185,10 +2191,10 @@ abstract class L1HandlerTxnReceipt implements TxnReceipt { final int? blockNumber, required final String type, required final List messagesSent, - required final List events}) = _$L1HandlerTxnReceipt; + required final List events}) = _$L1HandlerTxnReceiptImpl; factory L1HandlerTxnReceipt.fromJson(Map json) = - _$L1HandlerTxnReceipt.fromJson; + _$L1HandlerTxnReceiptImpl.fromJson; @override // start of COMMON_RECEIPT_PROPERTIES Felt get transactionHash; @@ -2205,16 +2211,16 @@ abstract class L1HandlerTxnReceipt implements TxnReceipt { List get events; @override @JsonKey(ignore: true) - _$$L1HandlerTxnReceiptCopyWith<_$L1HandlerTxnReceipt> get copyWith => + _$$L1HandlerTxnReceiptImplCopyWith<_$L1HandlerTxnReceiptImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$DeployTxnReceiptCopyWith<$Res> +abstract class _$$DeployTxnReceiptImplCopyWith<$Res> implements $TxnReceiptCopyWith<$Res> { - factory _$$DeployTxnReceiptCopyWith( - _$DeployTxnReceipt value, $Res Function(_$DeployTxnReceipt) then) = - __$$DeployTxnReceiptCopyWithImpl<$Res>; + factory _$$DeployTxnReceiptImplCopyWith(_$DeployTxnReceiptImpl value, + $Res Function(_$DeployTxnReceiptImpl) then) = + __$$DeployTxnReceiptImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -2230,11 +2236,11 @@ abstract class _$$DeployTxnReceiptCopyWith<$Res> } /// @nodoc -class __$$DeployTxnReceiptCopyWithImpl<$Res> - extends _$TxnReceiptCopyWithImpl<$Res, _$DeployTxnReceipt> - implements _$$DeployTxnReceiptCopyWith<$Res> { - __$$DeployTxnReceiptCopyWithImpl( - _$DeployTxnReceipt _value, $Res Function(_$DeployTxnReceipt) _then) +class __$$DeployTxnReceiptImplCopyWithImpl<$Res> + extends _$TxnReceiptCopyWithImpl<$Res, _$DeployTxnReceiptImpl> + implements _$$DeployTxnReceiptImplCopyWith<$Res> { + __$$DeployTxnReceiptImplCopyWithImpl(_$DeployTxnReceiptImpl _value, + $Res Function(_$DeployTxnReceiptImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -2250,7 +2256,7 @@ class __$$DeployTxnReceiptCopyWithImpl<$Res> Object? events = null, Object? contractAddress = null, }) { - return _then(_$DeployTxnReceipt( + return _then(_$DeployTxnReceiptImpl( transactionHash: null == transactionHash ? _value.transactionHash : transactionHash // ignore: cast_nullable_to_non_nullable @@ -2293,8 +2299,8 @@ class __$$DeployTxnReceiptCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$DeployTxnReceipt implements DeployTxnReceipt { - const _$DeployTxnReceipt( +class _$DeployTxnReceiptImpl implements DeployTxnReceipt { + const _$DeployTxnReceiptImpl( {required this.transactionHash, required this.actualFee, required this.status, @@ -2309,8 +2315,8 @@ class _$DeployTxnReceipt implements DeployTxnReceipt { _events = events, $type = $type ?? 'deployTxnReceipt'; - factory _$DeployTxnReceipt.fromJson(Map json) => - _$$DeployTxnReceiptFromJson(json); + factory _$DeployTxnReceiptImpl.fromJson(Map json) => + _$$DeployTxnReceiptImplFromJson(json); // start of COMMON_RECEIPT_PROPERTIES @override @@ -2354,10 +2360,10 @@ class _$DeployTxnReceipt implements DeployTxnReceipt { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$DeployTxnReceipt && + other is _$DeployTxnReceiptImpl && (identical(other.transactionHash, transactionHash) || other.transactionHash == transactionHash) && (identical(other.actualFee, actualFee) || @@ -2392,8 +2398,9 @@ class _$DeployTxnReceipt implements DeployTxnReceipt { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$DeployTxnReceiptCopyWith<_$DeployTxnReceipt> get copyWith => - __$$DeployTxnReceiptCopyWithImpl<_$DeployTxnReceipt>(this, _$identity); + _$$DeployTxnReceiptImplCopyWith<_$DeployTxnReceiptImpl> get copyWith => + __$$DeployTxnReceiptImplCopyWithImpl<_$DeployTxnReceiptImpl>( + this, _$identity); @override @optionalTypeArgs @@ -2665,7 +2672,7 @@ class _$DeployTxnReceipt implements DeployTxnReceipt { @override Map toJson() { - return _$$DeployTxnReceiptToJson( + return _$$DeployTxnReceiptImplToJson( this, ); } @@ -2681,10 +2688,10 @@ abstract class DeployTxnReceipt implements TxnReceipt { required final String type, required final List messagesSent, required final List events, - required final Felt contractAddress}) = _$DeployTxnReceipt; + required final Felt contractAddress}) = _$DeployTxnReceiptImpl; factory DeployTxnReceipt.fromJson(Map json) = - _$DeployTxnReceipt.fromJson; + _$DeployTxnReceiptImpl.fromJson; @override // start of COMMON_RECEIPT_PROPERTIES Felt get transactionHash; @@ -2702,16 +2709,17 @@ abstract class DeployTxnReceipt implements TxnReceipt { Felt get contractAddress; @override @JsonKey(ignore: true) - _$$DeployTxnReceiptCopyWith<_$DeployTxnReceipt> get copyWith => + _$$DeployTxnReceiptImplCopyWith<_$DeployTxnReceiptImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$DeployAccountTxnReceiptCopyWith<$Res> +abstract class _$$DeployAccountTxnReceiptImplCopyWith<$Res> implements $TxnReceiptCopyWith<$Res> { - factory _$$DeployAccountTxnReceiptCopyWith(_$DeployAccountTxnReceipt value, - $Res Function(_$DeployAccountTxnReceipt) then) = - __$$DeployAccountTxnReceiptCopyWithImpl<$Res>; + factory _$$DeployAccountTxnReceiptImplCopyWith( + _$DeployAccountTxnReceiptImpl value, + $Res Function(_$DeployAccountTxnReceiptImpl) then) = + __$$DeployAccountTxnReceiptImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -2727,11 +2735,12 @@ abstract class _$$DeployAccountTxnReceiptCopyWith<$Res> } /// @nodoc -class __$$DeployAccountTxnReceiptCopyWithImpl<$Res> - extends _$TxnReceiptCopyWithImpl<$Res, _$DeployAccountTxnReceipt> - implements _$$DeployAccountTxnReceiptCopyWith<$Res> { - __$$DeployAccountTxnReceiptCopyWithImpl(_$DeployAccountTxnReceipt _value, - $Res Function(_$DeployAccountTxnReceipt) _then) +class __$$DeployAccountTxnReceiptImplCopyWithImpl<$Res> + extends _$TxnReceiptCopyWithImpl<$Res, _$DeployAccountTxnReceiptImpl> + implements _$$DeployAccountTxnReceiptImplCopyWith<$Res> { + __$$DeployAccountTxnReceiptImplCopyWithImpl( + _$DeployAccountTxnReceiptImpl _value, + $Res Function(_$DeployAccountTxnReceiptImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -2747,7 +2756,7 @@ class __$$DeployAccountTxnReceiptCopyWithImpl<$Res> Object? events = null, Object? contractAddress = null, }) { - return _then(_$DeployAccountTxnReceipt( + return _then(_$DeployAccountTxnReceiptImpl( transactionHash: null == transactionHash ? _value.transactionHash : transactionHash // ignore: cast_nullable_to_non_nullable @@ -2790,8 +2799,8 @@ class __$$DeployAccountTxnReceiptCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$DeployAccountTxnReceipt implements DeployAccountTxnReceipt { - const _$DeployAccountTxnReceipt( +class _$DeployAccountTxnReceiptImpl implements DeployAccountTxnReceipt { + const _$DeployAccountTxnReceiptImpl( {required this.transactionHash, required this.actualFee, required this.status, @@ -2806,8 +2815,8 @@ class _$DeployAccountTxnReceipt implements DeployAccountTxnReceipt { _events = events, $type = $type ?? 'deployAccountTxnReceipt'; - factory _$DeployAccountTxnReceipt.fromJson(Map json) => - _$$DeployAccountTxnReceiptFromJson(json); + factory _$DeployAccountTxnReceiptImpl.fromJson(Map json) => + _$$DeployAccountTxnReceiptImplFromJson(json); // start of COMMON_RECEIPT_PROPERTIES @override @@ -2851,10 +2860,10 @@ class _$DeployAccountTxnReceipt implements DeployAccountTxnReceipt { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$DeployAccountTxnReceipt && + other is _$DeployAccountTxnReceiptImpl && (identical(other.transactionHash, transactionHash) || other.transactionHash == transactionHash) && (identical(other.actualFee, actualFee) || @@ -2889,9 +2898,9 @@ class _$DeployAccountTxnReceipt implements DeployAccountTxnReceipt { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$DeployAccountTxnReceiptCopyWith<_$DeployAccountTxnReceipt> get copyWith => - __$$DeployAccountTxnReceiptCopyWithImpl<_$DeployAccountTxnReceipt>( - this, _$identity); + _$$DeployAccountTxnReceiptImplCopyWith<_$DeployAccountTxnReceiptImpl> + get copyWith => __$$DeployAccountTxnReceiptImplCopyWithImpl< + _$DeployAccountTxnReceiptImpl>(this, _$identity); @override @optionalTypeArgs @@ -3163,7 +3172,7 @@ class _$DeployAccountTxnReceipt implements DeployAccountTxnReceipt { @override Map toJson() { - return _$$DeployAccountTxnReceiptToJson( + return _$$DeployAccountTxnReceiptImplToJson( this, ); } @@ -3179,10 +3188,10 @@ abstract class DeployAccountTxnReceipt implements TxnReceipt { required final String type, required final List messagesSent, required final List events, - required final Felt contractAddress}) = _$DeployAccountTxnReceipt; + required final Felt contractAddress}) = _$DeployAccountTxnReceiptImpl; factory DeployAccountTxnReceipt.fromJson(Map json) = - _$DeployAccountTxnReceipt.fromJson; + _$DeployAccountTxnReceiptImpl.fromJson; @override // start of COMMON_RECEIPT_PROPERTIES Felt get transactionHash; @@ -3200,16 +3209,17 @@ abstract class DeployAccountTxnReceipt implements TxnReceipt { Felt get contractAddress; @override @JsonKey(ignore: true) - _$$DeployAccountTxnReceiptCopyWith<_$DeployAccountTxnReceipt> get copyWith => - throw _privateConstructorUsedError; + _$$DeployAccountTxnReceiptImplCopyWith<_$DeployAccountTxnReceiptImpl> + get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$PendingDeployTxnReceiptCopyWith<$Res> +abstract class _$$PendingDeployTxnReceiptImplCopyWith<$Res> implements $TxnReceiptCopyWith<$Res> { - factory _$$PendingDeployTxnReceiptCopyWith(_$PendingDeployTxnReceipt value, - $Res Function(_$PendingDeployTxnReceipt) then) = - __$$PendingDeployTxnReceiptCopyWithImpl<$Res>; + factory _$$PendingDeployTxnReceiptImplCopyWith( + _$PendingDeployTxnReceiptImpl value, + $Res Function(_$PendingDeployTxnReceiptImpl) then) = + __$$PendingDeployTxnReceiptImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -3222,11 +3232,12 @@ abstract class _$$PendingDeployTxnReceiptCopyWith<$Res> } /// @nodoc -class __$$PendingDeployTxnReceiptCopyWithImpl<$Res> - extends _$TxnReceiptCopyWithImpl<$Res, _$PendingDeployTxnReceipt> - implements _$$PendingDeployTxnReceiptCopyWith<$Res> { - __$$PendingDeployTxnReceiptCopyWithImpl(_$PendingDeployTxnReceipt _value, - $Res Function(_$PendingDeployTxnReceipt) _then) +class __$$PendingDeployTxnReceiptImplCopyWithImpl<$Res> + extends _$TxnReceiptCopyWithImpl<$Res, _$PendingDeployTxnReceiptImpl> + implements _$$PendingDeployTxnReceiptImplCopyWith<$Res> { + __$$PendingDeployTxnReceiptImplCopyWithImpl( + _$PendingDeployTxnReceiptImpl _value, + $Res Function(_$PendingDeployTxnReceiptImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -3239,7 +3250,7 @@ class __$$PendingDeployTxnReceiptCopyWithImpl<$Res> Object? events = null, Object? contractAddress = null, }) { - return _then(_$PendingDeployTxnReceipt( + return _then(_$PendingDeployTxnReceiptImpl( transactionHash: null == transactionHash ? _value.transactionHash : transactionHash // ignore: cast_nullable_to_non_nullable @@ -3270,8 +3281,8 @@ class __$$PendingDeployTxnReceiptCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$PendingDeployTxnReceipt implements PendingDeployTxnReceipt { - const _$PendingDeployTxnReceipt( +class _$PendingDeployTxnReceiptImpl implements PendingDeployTxnReceipt { + const _$PendingDeployTxnReceiptImpl( {required this.transactionHash, required this.actualFee, required this.type, @@ -3283,8 +3294,8 @@ class _$PendingDeployTxnReceipt implements PendingDeployTxnReceipt { _events = events, $type = $type ?? 'pendingDeployTxnReceipt'; - factory _$PendingDeployTxnReceipt.fromJson(Map json) => - _$$PendingDeployTxnReceiptFromJson(json); + factory _$PendingDeployTxnReceiptImpl.fromJson(Map json) => + _$$PendingDeployTxnReceiptImplFromJson(json); // start of PENDING_COMMON_RECEIPT_PROPERTIES @override @@ -3322,10 +3333,10 @@ class _$PendingDeployTxnReceipt implements PendingDeployTxnReceipt { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$PendingDeployTxnReceipt && + other is _$PendingDeployTxnReceiptImpl && (identical(other.transactionHash, transactionHash) || other.transactionHash == transactionHash) && (identical(other.actualFee, actualFee) || @@ -3352,9 +3363,9 @@ class _$PendingDeployTxnReceipt implements PendingDeployTxnReceipt { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$PendingDeployTxnReceiptCopyWith<_$PendingDeployTxnReceipt> get copyWith => - __$$PendingDeployTxnReceiptCopyWithImpl<_$PendingDeployTxnReceipt>( - this, _$identity); + _$$PendingDeployTxnReceiptImplCopyWith<_$PendingDeployTxnReceiptImpl> + get copyWith => __$$PendingDeployTxnReceiptImplCopyWithImpl< + _$PendingDeployTxnReceiptImpl>(this, _$identity); @override @optionalTypeArgs @@ -3626,7 +3637,7 @@ class _$PendingDeployTxnReceipt implements PendingDeployTxnReceipt { @override Map toJson() { - return _$$PendingDeployTxnReceiptToJson( + return _$$PendingDeployTxnReceiptImplToJson( this, ); } @@ -3639,10 +3650,10 @@ abstract class PendingDeployTxnReceipt implements TxnReceipt { required final String? type, required final List messagesSent, required final List events, - required final Felt contractAddress}) = _$PendingDeployTxnReceipt; + required final Felt contractAddress}) = _$PendingDeployTxnReceiptImpl; factory PendingDeployTxnReceipt.fromJson(Map json) = - _$PendingDeployTxnReceipt.fromJson; + _$PendingDeployTxnReceiptImpl.fromJson; @override // start of PENDING_COMMON_RECEIPT_PROPERTIES Felt get transactionHash; @@ -3657,17 +3668,17 @@ abstract class PendingDeployTxnReceipt implements TxnReceipt { Felt get contractAddress; @override @JsonKey(ignore: true) - _$$PendingDeployTxnReceiptCopyWith<_$PendingDeployTxnReceipt> get copyWith => - throw _privateConstructorUsedError; + _$$PendingDeployTxnReceiptImplCopyWith<_$PendingDeployTxnReceiptImpl> + get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$PendingCommonReceiptPropertiesCopyWith<$Res> +abstract class _$$PendingCommonReceiptPropertiesImplCopyWith<$Res> implements $TxnReceiptCopyWith<$Res> { - factory _$$PendingCommonReceiptPropertiesCopyWith( - _$PendingCommonReceiptProperties value, - $Res Function(_$PendingCommonReceiptProperties) then) = - __$$PendingCommonReceiptPropertiesCopyWithImpl<$Res>; + factory _$$PendingCommonReceiptPropertiesImplCopyWith( + _$PendingCommonReceiptPropertiesImpl value, + $Res Function(_$PendingCommonReceiptPropertiesImpl) then) = + __$$PendingCommonReceiptPropertiesImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -3679,12 +3690,12 @@ abstract class _$$PendingCommonReceiptPropertiesCopyWith<$Res> } /// @nodoc -class __$$PendingCommonReceiptPropertiesCopyWithImpl<$Res> - extends _$TxnReceiptCopyWithImpl<$Res, _$PendingCommonReceiptProperties> - implements _$$PendingCommonReceiptPropertiesCopyWith<$Res> { - __$$PendingCommonReceiptPropertiesCopyWithImpl( - _$PendingCommonReceiptProperties _value, - $Res Function(_$PendingCommonReceiptProperties) _then) +class __$$PendingCommonReceiptPropertiesImplCopyWithImpl<$Res> + extends _$TxnReceiptCopyWithImpl<$Res, _$PendingCommonReceiptPropertiesImpl> + implements _$$PendingCommonReceiptPropertiesImplCopyWith<$Res> { + __$$PendingCommonReceiptPropertiesImplCopyWithImpl( + _$PendingCommonReceiptPropertiesImpl _value, + $Res Function(_$PendingCommonReceiptPropertiesImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -3696,7 +3707,7 @@ class __$$PendingCommonReceiptPropertiesCopyWithImpl<$Res> Object? messagesSent = null, Object? events = null, }) { - return _then(_$PendingCommonReceiptProperties( + return _then(_$PendingCommonReceiptPropertiesImpl( transactionHash: null == transactionHash ? _value.transactionHash : transactionHash // ignore: cast_nullable_to_non_nullable @@ -3723,9 +3734,9 @@ class __$$PendingCommonReceiptPropertiesCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$PendingCommonReceiptProperties +class _$PendingCommonReceiptPropertiesImpl implements PendingCommonReceiptProperties { - const _$PendingCommonReceiptProperties( + const _$PendingCommonReceiptPropertiesImpl( {required this.transactionHash, required this.actualFee, required this.type, @@ -3736,9 +3747,9 @@ class _$PendingCommonReceiptProperties _events = events, $type = $type ?? 'pendingCommonReceiptProperties'; - factory _$PendingCommonReceiptProperties.fromJson( + factory _$PendingCommonReceiptPropertiesImpl.fromJson( Map json) => - _$$PendingCommonReceiptPropertiesFromJson(json); + _$$PendingCommonReceiptPropertiesImplFromJson(json); // start of PENDING_COMMON_RECEIPT_PROPERTIES @override @@ -3772,10 +3783,10 @@ class _$PendingCommonReceiptProperties } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$PendingCommonReceiptProperties && + other is _$PendingCommonReceiptPropertiesImpl && (identical(other.transactionHash, transactionHash) || other.transactionHash == transactionHash) && (identical(other.actualFee, actualFee) || @@ -3799,9 +3810,10 @@ class _$PendingCommonReceiptProperties @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$PendingCommonReceiptPropertiesCopyWith<_$PendingCommonReceiptProperties> - get copyWith => __$$PendingCommonReceiptPropertiesCopyWithImpl< - _$PendingCommonReceiptProperties>(this, _$identity); + _$$PendingCommonReceiptPropertiesImplCopyWith< + _$PendingCommonReceiptPropertiesImpl> + get copyWith => __$$PendingCommonReceiptPropertiesImplCopyWithImpl< + _$PendingCommonReceiptPropertiesImpl>(this, _$identity); @override @optionalTypeArgs @@ -4073,7 +4085,7 @@ class _$PendingCommonReceiptProperties @override Map toJson() { - return _$$PendingCommonReceiptPropertiesToJson( + return _$$PendingCommonReceiptPropertiesImplToJson( this, ); } @@ -4081,14 +4093,15 @@ class _$PendingCommonReceiptProperties abstract class PendingCommonReceiptProperties implements TxnReceipt { const factory PendingCommonReceiptProperties( - {required final Felt transactionHash, - required final Felt actualFee, - required final String? type, - required final List messagesSent, - required final List events}) = _$PendingCommonReceiptProperties; + {required final Felt transactionHash, + required final Felt actualFee, + required final String? type, + required final List messagesSent, + required final List events}) = + _$PendingCommonReceiptPropertiesImpl; factory PendingCommonReceiptProperties.fromJson(Map json) = - _$PendingCommonReceiptProperties.fromJson; + _$PendingCommonReceiptPropertiesImpl.fromJson; @override // start of PENDING_COMMON_RECEIPT_PROPERTIES Felt get transactionHash; @@ -4102,6 +4115,7 @@ abstract class PendingCommonReceiptProperties implements TxnReceipt { List get events; @override @JsonKey(ignore: true) - _$$PendingCommonReceiptPropertiesCopyWith<_$PendingCommonReceiptProperties> + _$$PendingCommonReceiptPropertiesImplCopyWith< + _$PendingCommonReceiptPropertiesImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/get_transaction_receipt.g.dart b/packages/starknet_provider/lib/src/model/get_transaction_receipt.g.dart index da7aa7b2..0d1665bd 100644 --- a/packages/starknet_provider/lib/src/model/get_transaction_receipt.g.dart +++ b/packages/starknet_provider/lib/src/model/get_transaction_receipt.g.dart @@ -6,43 +6,44 @@ part of 'get_transaction_receipt.dart'; // JsonSerializableGenerator // ************************************************************************** -_$GetTransactionReceiptResult _$$GetTransactionReceiptResultFromJson( +_$GetTransactionReceiptResultImpl _$$GetTransactionReceiptResultImplFromJson( Map json) => - _$GetTransactionReceiptResult( + _$GetTransactionReceiptResultImpl( result: TxnReceipt.fromJson(json['result'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetTransactionReceiptResultToJson( - _$GetTransactionReceiptResult instance) => +Map _$$GetTransactionReceiptResultImplToJson( + _$GetTransactionReceiptResultImpl instance) => { 'result': instance.result.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$GetTransactionReceiptError _$$GetTransactionReceiptErrorFromJson( +_$GetTransactionReceiptErrorImpl _$$GetTransactionReceiptErrorImplFromJson( Map json) => - _$GetTransactionReceiptError( + _$GetTransactionReceiptErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$GetTransactionReceiptErrorToJson( - _$GetTransactionReceiptError instance) => +Map _$$GetTransactionReceiptErrorImplToJson( + _$GetTransactionReceiptErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$InvokeTxnReceipt _$$InvokeTxnReceiptFromJson(Map json) => - _$InvokeTxnReceipt( +_$InvokeTxnReceiptImpl _$$InvokeTxnReceiptImplFromJson( + Map json) => + _$InvokeTxnReceiptImpl( transactionHash: Felt.fromJson(json['transaction_hash'] as String), actualFee: Felt.fromJson(json['actual_fee'] as String), status: json['status'] as String, blockHash: json['block_hash'] == null ? null : Felt.fromJson(json['block_hash'] as String), - blockNumber: json['block_number'] as int?, + blockNumber: (json['block_number'] as num?)?.toInt(), type: json['type'] as String, messagesSent: (json['messages_sent'] as List) .map((e) => MsgToL1.fromJson(e as Map)) @@ -53,7 +54,8 @@ _$InvokeTxnReceipt _$$InvokeTxnReceiptFromJson(Map json) => $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$InvokeTxnReceiptToJson(_$InvokeTxnReceipt instance) => +Map _$$InvokeTxnReceiptImplToJson( + _$InvokeTxnReceiptImpl instance) => { 'transaction_hash': instance.transactionHash.toJson(), 'actual_fee': instance.actualFee.toJson(), @@ -66,15 +68,16 @@ Map _$$InvokeTxnReceiptToJson(_$InvokeTxnReceipt instance) => 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$DeclareTxnReceipt _$$DeclareTxnReceiptFromJson(Map json) => - _$DeclareTxnReceipt( +_$DeclareTxnReceiptImpl _$$DeclareTxnReceiptImplFromJson( + Map json) => + _$DeclareTxnReceiptImpl( transactionHash: Felt.fromJson(json['transaction_hash'] as String), actualFee: Felt.fromJson(json['actual_fee'] as String), status: json['status'] as String, blockHash: json['block_hash'] == null ? null : Felt.fromJson(json['block_hash'] as String), - blockNumber: json['block_number'] as int?, + blockNumber: (json['block_number'] as num?)?.toInt(), type: json['type'] as String, messagesSent: (json['messages_sent'] as List) .map((e) => MsgToL1.fromJson(e as Map)) @@ -85,7 +88,8 @@ _$DeclareTxnReceipt _$$DeclareTxnReceiptFromJson(Map json) => $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$DeclareTxnReceiptToJson(_$DeclareTxnReceipt instance) => +Map _$$DeclareTxnReceiptImplToJson( + _$DeclareTxnReceiptImpl instance) => { 'transaction_hash': instance.transactionHash.toJson(), 'actual_fee': instance.actualFee.toJson(), @@ -98,16 +102,16 @@ Map _$$DeclareTxnReceiptToJson(_$DeclareTxnReceipt instance) => 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$L1HandlerTxnReceipt _$$L1HandlerTxnReceiptFromJson( +_$L1HandlerTxnReceiptImpl _$$L1HandlerTxnReceiptImplFromJson( Map json) => - _$L1HandlerTxnReceipt( + _$L1HandlerTxnReceiptImpl( transactionHash: Felt.fromJson(json['transaction_hash'] as String), actualFee: Felt.fromJson(json['actual_fee'] as String), status: json['status'] as String, blockHash: json['block_hash'] == null ? null : Felt.fromJson(json['block_hash'] as String), - blockNumber: json['block_number'] as int?, + blockNumber: (json['block_number'] as num?)?.toInt(), type: json['type'] as String, messagesSent: (json['messages_sent'] as List) .map((e) => MsgToL1.fromJson(e as Map)) @@ -118,8 +122,8 @@ _$L1HandlerTxnReceipt _$$L1HandlerTxnReceiptFromJson( $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$L1HandlerTxnReceiptToJson( - _$L1HandlerTxnReceipt instance) => +Map _$$L1HandlerTxnReceiptImplToJson( + _$L1HandlerTxnReceiptImpl instance) => { 'transaction_hash': instance.transactionHash.toJson(), 'actual_fee': instance.actualFee.toJson(), @@ -132,15 +136,16 @@ Map _$$L1HandlerTxnReceiptToJson( 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$DeployTxnReceipt _$$DeployTxnReceiptFromJson(Map json) => - _$DeployTxnReceipt( +_$DeployTxnReceiptImpl _$$DeployTxnReceiptImplFromJson( + Map json) => + _$DeployTxnReceiptImpl( transactionHash: Felt.fromJson(json['transaction_hash'] as String), actualFee: Felt.fromJson(json['actual_fee'] as String), status: json['status'] as String, blockHash: json['block_hash'] == null ? null : Felt.fromJson(json['block_hash'] as String), - blockNumber: json['block_number'] as int?, + blockNumber: (json['block_number'] as num?)?.toInt(), type: json['type'] as String, messagesSent: (json['messages_sent'] as List) .map((e) => MsgToL1.fromJson(e as Map)) @@ -152,7 +157,8 @@ _$DeployTxnReceipt _$$DeployTxnReceiptFromJson(Map json) => $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$DeployTxnReceiptToJson(_$DeployTxnReceipt instance) => +Map _$$DeployTxnReceiptImplToJson( + _$DeployTxnReceiptImpl instance) => { 'transaction_hash': instance.transactionHash.toJson(), 'actual_fee': instance.actualFee.toJson(), @@ -166,16 +172,16 @@ Map _$$DeployTxnReceiptToJson(_$DeployTxnReceipt instance) => 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$DeployAccountTxnReceipt _$$DeployAccountTxnReceiptFromJson( +_$DeployAccountTxnReceiptImpl _$$DeployAccountTxnReceiptImplFromJson( Map json) => - _$DeployAccountTxnReceipt( + _$DeployAccountTxnReceiptImpl( transactionHash: Felt.fromJson(json['transaction_hash'] as String), actualFee: Felt.fromJson(json['actual_fee'] as String), status: json['status'] as String, blockHash: json['block_hash'] == null ? null : Felt.fromJson(json['block_hash'] as String), - blockNumber: json['block_number'] as int?, + blockNumber: (json['block_number'] as num?)?.toInt(), type: json['type'] as String, messagesSent: (json['messages_sent'] as List) .map((e) => MsgToL1.fromJson(e as Map)) @@ -187,8 +193,8 @@ _$DeployAccountTxnReceipt _$$DeployAccountTxnReceiptFromJson( $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$DeployAccountTxnReceiptToJson( - _$DeployAccountTxnReceipt instance) => +Map _$$DeployAccountTxnReceiptImplToJson( + _$DeployAccountTxnReceiptImpl instance) => { 'transaction_hash': instance.transactionHash.toJson(), 'actual_fee': instance.actualFee.toJson(), @@ -202,9 +208,9 @@ Map _$$DeployAccountTxnReceiptToJson( 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$PendingDeployTxnReceipt _$$PendingDeployTxnReceiptFromJson( +_$PendingDeployTxnReceiptImpl _$$PendingDeployTxnReceiptImplFromJson( Map json) => - _$PendingDeployTxnReceipt( + _$PendingDeployTxnReceiptImpl( transactionHash: Felt.fromJson(json['transaction_hash'] as String), actualFee: Felt.fromJson(json['actual_fee'] as String), type: json['type'] as String?, @@ -218,8 +224,8 @@ _$PendingDeployTxnReceipt _$$PendingDeployTxnReceiptFromJson( $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$PendingDeployTxnReceiptToJson( - _$PendingDeployTxnReceipt instance) => +Map _$$PendingDeployTxnReceiptImplToJson( + _$PendingDeployTxnReceiptImpl instance) => { 'transaction_hash': instance.transactionHash.toJson(), 'actual_fee': instance.actualFee.toJson(), @@ -230,23 +236,23 @@ Map _$$PendingDeployTxnReceiptToJson( 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$PendingCommonReceiptProperties _$$PendingCommonReceiptPropertiesFromJson( - Map json) => - _$PendingCommonReceiptProperties( - transactionHash: Felt.fromJson(json['transaction_hash'] as String), - actualFee: Felt.fromJson(json['actual_fee'] as String), - type: json['type'] as String?, - messagesSent: (json['messages_sent'] as List) - .map((e) => MsgToL1.fromJson(e as Map)) - .toList(), - events: (json['events'] as List) - .map((e) => Event.fromJson(e as Map)) - .toList(), - $type: json['starkNetRuntimeTypeToRemove'] as String?, - ); +_$PendingCommonReceiptPropertiesImpl + _$$PendingCommonReceiptPropertiesImplFromJson(Map json) => + _$PendingCommonReceiptPropertiesImpl( + transactionHash: Felt.fromJson(json['transaction_hash'] as String), + actualFee: Felt.fromJson(json['actual_fee'] as String), + type: json['type'] as String?, + messagesSent: (json['messages_sent'] as List) + .map((e) => MsgToL1.fromJson(e as Map)) + .toList(), + events: (json['events'] as List) + .map((e) => Event.fromJson(e as Map)) + .toList(), + $type: json['starkNetRuntimeTypeToRemove'] as String?, + ); -Map _$$PendingCommonReceiptPropertiesToJson( - _$PendingCommonReceiptProperties instance) => +Map _$$PendingCommonReceiptPropertiesImplToJson( + _$PendingCommonReceiptPropertiesImpl instance) => { 'transaction_hash': instance.transactionHash.toJson(), 'actual_fee': instance.actualFee.toJson(), diff --git a/packages/starknet_provider/lib/src/model/invoke_transaction.dart b/packages/starknet_provider/lib/src/model/invoke_transaction.dart index 289effdb..66df31d0 100644 --- a/packages/starknet_provider/lib/src/model/invoke_transaction.dart +++ b/packages/starknet_provider/lib/src/model/invoke_transaction.dart @@ -1,3 +1,5 @@ +// ignore_for_file: invalid_annotation_target + import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:starknet/starknet.dart'; import 'package:starknet_provider/starknet_provider.dart'; diff --git a/packages/starknet_provider/lib/src/model/invoke_transaction.freezed.dart b/packages/starknet_provider/lib/src/model/invoke_transaction.freezed.dart index c16e8b29..dfa04b34 100644 --- a/packages/starknet_provider/lib/src/model/invoke_transaction.freezed.dart +++ b/packages/starknet_provider/lib/src/model/invoke_transaction.freezed.dart @@ -12,7 +12,7 @@ part of 'invoke_transaction.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); InvokeTransactionRequest _$InvokeTransactionRequestFromJson( Map json) { @@ -64,24 +64,25 @@ class _$InvokeTransactionRequestCopyWithImpl<$Res, } /// @nodoc -abstract class _$$_InvokeTransactionRequestCopyWith<$Res> +abstract class _$$InvokeTransactionRequestImplCopyWith<$Res> implements $InvokeTransactionRequestCopyWith<$Res> { - factory _$$_InvokeTransactionRequestCopyWith( - _$_InvokeTransactionRequest value, - $Res Function(_$_InvokeTransactionRequest) then) = - __$$_InvokeTransactionRequestCopyWithImpl<$Res>; + factory _$$InvokeTransactionRequestImplCopyWith( + _$InvokeTransactionRequestImpl value, + $Res Function(_$InvokeTransactionRequestImpl) then) = + __$$InvokeTransactionRequestImplCopyWithImpl<$Res>; @override @useResult $Res call({InvokeTransaction invokeTransaction}); } /// @nodoc -class __$$_InvokeTransactionRequestCopyWithImpl<$Res> +class __$$InvokeTransactionRequestImplCopyWithImpl<$Res> extends _$InvokeTransactionRequestCopyWithImpl<$Res, - _$_InvokeTransactionRequest> - implements _$$_InvokeTransactionRequestCopyWith<$Res> { - __$$_InvokeTransactionRequestCopyWithImpl(_$_InvokeTransactionRequest _value, - $Res Function(_$_InvokeTransactionRequest) _then) + _$InvokeTransactionRequestImpl> + implements _$$InvokeTransactionRequestImplCopyWith<$Res> { + __$$InvokeTransactionRequestImplCopyWithImpl( + _$InvokeTransactionRequestImpl _value, + $Res Function(_$InvokeTransactionRequestImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -89,7 +90,7 @@ class __$$_InvokeTransactionRequestCopyWithImpl<$Res> $Res call({ Object? invokeTransaction = null, }) { - return _then(_$_InvokeTransactionRequest( + return _then(_$InvokeTransactionRequestImpl( invokeTransaction: null == invokeTransaction ? _value.invokeTransaction : invokeTransaction // ignore: cast_nullable_to_non_nullable @@ -100,11 +101,11 @@ class __$$_InvokeTransactionRequestCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_InvokeTransactionRequest implements _InvokeTransactionRequest { - const _$_InvokeTransactionRequest({required this.invokeTransaction}); +class _$InvokeTransactionRequestImpl implements _InvokeTransactionRequest { + const _$InvokeTransactionRequestImpl({required this.invokeTransaction}); - factory _$_InvokeTransactionRequest.fromJson(Map json) => - _$$_InvokeTransactionRequestFromJson(json); + factory _$InvokeTransactionRequestImpl.fromJson(Map json) => + _$$InvokeTransactionRequestImplFromJson(json); @override final InvokeTransaction invokeTransaction; @@ -115,10 +116,10 @@ class _$_InvokeTransactionRequest implements _InvokeTransactionRequest { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_InvokeTransactionRequest && + other is _$InvokeTransactionRequestImpl && (identical(other.invokeTransaction, invokeTransaction) || other.invokeTransaction == invokeTransaction)); } @@ -130,13 +131,13 @@ class _$_InvokeTransactionRequest implements _InvokeTransactionRequest { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_InvokeTransactionRequestCopyWith<_$_InvokeTransactionRequest> - get copyWith => __$$_InvokeTransactionRequestCopyWithImpl< - _$_InvokeTransactionRequest>(this, _$identity); + _$$InvokeTransactionRequestImplCopyWith<_$InvokeTransactionRequestImpl> + get copyWith => __$$InvokeTransactionRequestImplCopyWithImpl< + _$InvokeTransactionRequestImpl>(this, _$identity); @override Map toJson() { - return _$$_InvokeTransactionRequestToJson( + return _$$InvokeTransactionRequestImplToJson( this, ); } @@ -145,16 +146,16 @@ class _$_InvokeTransactionRequest implements _InvokeTransactionRequest { abstract class _InvokeTransactionRequest implements InvokeTransactionRequest { const factory _InvokeTransactionRequest( {required final InvokeTransaction invokeTransaction}) = - _$_InvokeTransactionRequest; + _$InvokeTransactionRequestImpl; factory _InvokeTransactionRequest.fromJson(Map json) = - _$_InvokeTransactionRequest.fromJson; + _$InvokeTransactionRequestImpl.fromJson; @override InvokeTransaction get invokeTransaction; @override @JsonKey(ignore: true) - _$$_InvokeTransactionRequestCopyWith<_$_InvokeTransactionRequest> + _$$InvokeTransactionRequestImplCopyWith<_$InvokeTransactionRequestImpl> get copyWith => throw _privateConstructorUsedError; } @@ -250,11 +251,11 @@ class _$InvokeTransactionV0CopyWithImpl<$Res, $Val extends InvokeTransactionV0> } /// @nodoc -abstract class _$$_InvokeTransactionV0CopyWith<$Res> +abstract class _$$InvokeTransactionV0ImplCopyWith<$Res> implements $InvokeTransactionV0CopyWith<$Res> { - factory _$$_InvokeTransactionV0CopyWith(_$_InvokeTransactionV0 value, - $Res Function(_$_InvokeTransactionV0) then) = - __$$_InvokeTransactionV0CopyWithImpl<$Res>; + factory _$$InvokeTransactionV0ImplCopyWith(_$InvokeTransactionV0Impl value, + $Res Function(_$InvokeTransactionV0Impl) then) = + __$$InvokeTransactionV0ImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -268,11 +269,11 @@ abstract class _$$_InvokeTransactionV0CopyWith<$Res> } /// @nodoc -class __$$_InvokeTransactionV0CopyWithImpl<$Res> - extends _$InvokeTransactionV0CopyWithImpl<$Res, _$_InvokeTransactionV0> - implements _$$_InvokeTransactionV0CopyWith<$Res> { - __$$_InvokeTransactionV0CopyWithImpl(_$_InvokeTransactionV0 _value, - $Res Function(_$_InvokeTransactionV0) _then) +class __$$InvokeTransactionV0ImplCopyWithImpl<$Res> + extends _$InvokeTransactionV0CopyWithImpl<$Res, _$InvokeTransactionV0Impl> + implements _$$InvokeTransactionV0ImplCopyWith<$Res> { + __$$InvokeTransactionV0ImplCopyWithImpl(_$InvokeTransactionV0Impl _value, + $Res Function(_$InvokeTransactionV0Impl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -286,7 +287,7 @@ class __$$_InvokeTransactionV0CopyWithImpl<$Res> Object? entryPointSelector = null, Object? calldata = null, }) { - return _then(_$_InvokeTransactionV0( + return _then(_$InvokeTransactionV0Impl( type: null == type ? _value.type : type // ignore: cast_nullable_to_non_nullable @@ -321,8 +322,8 @@ class __$$_InvokeTransactionV0CopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_InvokeTransactionV0 implements _InvokeTransactionV0 { - const _$_InvokeTransactionV0( +class _$InvokeTransactionV0Impl implements _InvokeTransactionV0 { + const _$InvokeTransactionV0Impl( {this.type = 'INVOKE', @JsonKey(toJson: maxFeeToJson) required this.maxFee, this.version = '0x00', @@ -333,8 +334,8 @@ class _$_InvokeTransactionV0 implements _InvokeTransactionV0 { : _signature = signature, _calldata = calldata; - factory _$_InvokeTransactionV0.fromJson(Map json) => - _$$_InvokeTransactionV0FromJson(json); + factory _$InvokeTransactionV0Impl.fromJson(Map json) => + _$$InvokeTransactionV0ImplFromJson(json); @override @JsonKey() @@ -371,10 +372,10 @@ class _$_InvokeTransactionV0 implements _InvokeTransactionV0 { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_InvokeTransactionV0 && + other is _$InvokeTransactionV0Impl && (identical(other.type, type) || other.type == type) && (identical(other.maxFee, maxFee) || other.maxFee == maxFee) && (identical(other.version, version) || other.version == version) && @@ -402,13 +403,13 @@ class _$_InvokeTransactionV0 implements _InvokeTransactionV0 { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_InvokeTransactionV0CopyWith<_$_InvokeTransactionV0> get copyWith => - __$$_InvokeTransactionV0CopyWithImpl<_$_InvokeTransactionV0>( + _$$InvokeTransactionV0ImplCopyWith<_$InvokeTransactionV0Impl> get copyWith => + __$$InvokeTransactionV0ImplCopyWithImpl<_$InvokeTransactionV0Impl>( this, _$identity); @override Map toJson() { - return _$$_InvokeTransactionV0ToJson( + return _$$InvokeTransactionV0ImplToJson( this, ); } @@ -422,10 +423,10 @@ abstract class _InvokeTransactionV0 implements InvokeTransactionV0 { required final List signature, required final Felt contractAddress, required final Felt entryPointSelector, - required final List calldata}) = _$_InvokeTransactionV0; + required final List calldata}) = _$InvokeTransactionV0Impl; factory _InvokeTransactionV0.fromJson(Map json) = - _$_InvokeTransactionV0.fromJson; + _$InvokeTransactionV0Impl.fromJson; @override String get type; @@ -444,7 +445,7 @@ abstract class _InvokeTransactionV0 implements InvokeTransactionV0 { List get calldata; @override @JsonKey(ignore: true) - _$$_InvokeTransactionV0CopyWith<_$_InvokeTransactionV0> get copyWith => + _$$InvokeTransactionV0ImplCopyWith<_$InvokeTransactionV0Impl> get copyWith => throw _privateConstructorUsedError; } @@ -540,11 +541,11 @@ class _$InvokeTransactionV1CopyWithImpl<$Res, $Val extends InvokeTransactionV1> } /// @nodoc -abstract class _$$_InvokeTransactionV1CopyWith<$Res> +abstract class _$$InvokeTransactionV1ImplCopyWith<$Res> implements $InvokeTransactionV1CopyWith<$Res> { - factory _$$_InvokeTransactionV1CopyWith(_$_InvokeTransactionV1 value, - $Res Function(_$_InvokeTransactionV1) then) = - __$$_InvokeTransactionV1CopyWithImpl<$Res>; + factory _$$InvokeTransactionV1ImplCopyWith(_$InvokeTransactionV1Impl value, + $Res Function(_$InvokeTransactionV1Impl) then) = + __$$InvokeTransactionV1ImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -558,11 +559,11 @@ abstract class _$$_InvokeTransactionV1CopyWith<$Res> } /// @nodoc -class __$$_InvokeTransactionV1CopyWithImpl<$Res> - extends _$InvokeTransactionV1CopyWithImpl<$Res, _$_InvokeTransactionV1> - implements _$$_InvokeTransactionV1CopyWith<$Res> { - __$$_InvokeTransactionV1CopyWithImpl(_$_InvokeTransactionV1 _value, - $Res Function(_$_InvokeTransactionV1) _then) +class __$$InvokeTransactionV1ImplCopyWithImpl<$Res> + extends _$InvokeTransactionV1CopyWithImpl<$Res, _$InvokeTransactionV1Impl> + implements _$$InvokeTransactionV1ImplCopyWith<$Res> { + __$$InvokeTransactionV1ImplCopyWithImpl(_$InvokeTransactionV1Impl _value, + $Res Function(_$InvokeTransactionV1Impl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -576,7 +577,7 @@ class __$$_InvokeTransactionV1CopyWithImpl<$Res> Object? version = null, Object? type = null, }) { - return _then(_$_InvokeTransactionV1( + return _then(_$InvokeTransactionV1Impl( signature: null == signature ? _value._signature : signature // ignore: cast_nullable_to_non_nullable @@ -611,8 +612,8 @@ class __$$_InvokeTransactionV1CopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_InvokeTransactionV1 implements _InvokeTransactionV1 { - const _$_InvokeTransactionV1( +class _$InvokeTransactionV1Impl implements _InvokeTransactionV1 { + const _$InvokeTransactionV1Impl( {required final List signature, @JsonKey(toJson: maxFeeToJson) required this.maxFee, required this.nonce, @@ -623,8 +624,8 @@ class _$_InvokeTransactionV1 implements _InvokeTransactionV1 { : _signature = signature, _calldata = calldata; - factory _$_InvokeTransactionV1.fromJson(Map json) => - _$$_InvokeTransactionV1FromJson(json); + factory _$InvokeTransactionV1Impl.fromJson(Map json) => + _$$InvokeTransactionV1ImplFromJson(json); final List _signature; @override @@ -662,10 +663,10 @@ class _$_InvokeTransactionV1 implements _InvokeTransactionV1 { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_InvokeTransactionV1 && + other is _$InvokeTransactionV1Impl && const DeepCollectionEquality() .equals(other._signature, _signature) && (identical(other.maxFee, maxFee) || other.maxFee == maxFee) && @@ -692,13 +693,13 @@ class _$_InvokeTransactionV1 implements _InvokeTransactionV1 { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_InvokeTransactionV1CopyWith<_$_InvokeTransactionV1> get copyWith => - __$$_InvokeTransactionV1CopyWithImpl<_$_InvokeTransactionV1>( + _$$InvokeTransactionV1ImplCopyWith<_$InvokeTransactionV1Impl> get copyWith => + __$$InvokeTransactionV1ImplCopyWithImpl<_$InvokeTransactionV1Impl>( this, _$identity); @override Map toJson() { - return _$$_InvokeTransactionV1ToJson( + return _$$InvokeTransactionV1ImplToJson( this, ); } @@ -712,10 +713,10 @@ abstract class _InvokeTransactionV1 implements InvokeTransactionV1 { required final Felt senderAddress, required final List calldata, final String version, - final String type}) = _$_InvokeTransactionV1; + final String type}) = _$InvokeTransactionV1Impl; factory _InvokeTransactionV1.fromJson(Map json) = - _$_InvokeTransactionV1.fromJson; + _$InvokeTransactionV1Impl.fromJson; @override List get signature; @@ -734,7 +735,7 @@ abstract class _InvokeTransactionV1 implements InvokeTransactionV1 { String get type; @override @JsonKey(ignore: true) - _$$_InvokeTransactionV1CopyWith<_$_InvokeTransactionV1> get copyWith => + _$$InvokeTransactionV1ImplCopyWith<_$InvokeTransactionV1Impl> get copyWith => throw _privateConstructorUsedError; } @@ -818,10 +819,11 @@ class _$InvokeTransactionResponseCopyWithImpl<$Res, } /// @nodoc -abstract class _$$InvokeTransactionResultCopyWith<$Res> { - factory _$$InvokeTransactionResultCopyWith(_$InvokeTransactionResult value, - $Res Function(_$InvokeTransactionResult) then) = - __$$InvokeTransactionResultCopyWithImpl<$Res>; +abstract class _$$InvokeTransactionResultImplCopyWith<$Res> { + factory _$$InvokeTransactionResultImplCopyWith( + _$InvokeTransactionResultImpl value, + $Res Function(_$InvokeTransactionResultImpl) then) = + __$$InvokeTransactionResultImplCopyWithImpl<$Res>; @useResult $Res call({InvokeTransactionResponseResult result}); @@ -829,12 +831,13 @@ abstract class _$$InvokeTransactionResultCopyWith<$Res> { } /// @nodoc -class __$$InvokeTransactionResultCopyWithImpl<$Res> +class __$$InvokeTransactionResultImplCopyWithImpl<$Res> extends _$InvokeTransactionResponseCopyWithImpl<$Res, - _$InvokeTransactionResult> - implements _$$InvokeTransactionResultCopyWith<$Res> { - __$$InvokeTransactionResultCopyWithImpl(_$InvokeTransactionResult _value, - $Res Function(_$InvokeTransactionResult) _then) + _$InvokeTransactionResultImpl> + implements _$$InvokeTransactionResultImplCopyWith<$Res> { + __$$InvokeTransactionResultImplCopyWithImpl( + _$InvokeTransactionResultImpl _value, + $Res Function(_$InvokeTransactionResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -842,7 +845,7 @@ class __$$InvokeTransactionResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$InvokeTransactionResult( + return _then(_$InvokeTransactionResultImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -862,12 +865,13 @@ class __$$InvokeTransactionResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$InvokeTransactionResult implements InvokeTransactionResult { - const _$InvokeTransactionResult({required this.result, final String? $type}) +class _$InvokeTransactionResultImpl implements InvokeTransactionResult { + const _$InvokeTransactionResultImpl( + {required this.result, final String? $type}) : $type = $type ?? 'result'; - factory _$InvokeTransactionResult.fromJson(Map json) => - _$$InvokeTransactionResultFromJson(json); + factory _$InvokeTransactionResultImpl.fromJson(Map json) => + _$$InvokeTransactionResultImplFromJson(json); @override final InvokeTransactionResponseResult result; @@ -881,10 +885,10 @@ class _$InvokeTransactionResult implements InvokeTransactionResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$InvokeTransactionResult && + other is _$InvokeTransactionResultImpl && (identical(other.result, result) || other.result == result)); } @@ -895,9 +899,9 @@ class _$InvokeTransactionResult implements InvokeTransactionResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$InvokeTransactionResultCopyWith<_$InvokeTransactionResult> get copyWith => - __$$InvokeTransactionResultCopyWithImpl<_$InvokeTransactionResult>( - this, _$identity); + _$$InvokeTransactionResultImplCopyWith<_$InvokeTransactionResultImpl> + get copyWith => __$$InvokeTransactionResultImplCopyWithImpl< + _$InvokeTransactionResultImpl>(this, _$identity); @override @optionalTypeArgs @@ -963,7 +967,7 @@ class _$InvokeTransactionResult implements InvokeTransactionResult { @override Map toJson() { - return _$$InvokeTransactionResultToJson( + return _$$InvokeTransactionResultImplToJson( this, ); } @@ -972,22 +976,23 @@ class _$InvokeTransactionResult implements InvokeTransactionResult { abstract class InvokeTransactionResult implements InvokeTransactionResponse { const factory InvokeTransactionResult( {required final InvokeTransactionResponseResult result}) = - _$InvokeTransactionResult; + _$InvokeTransactionResultImpl; factory InvokeTransactionResult.fromJson(Map json) = - _$InvokeTransactionResult.fromJson; + _$InvokeTransactionResultImpl.fromJson; InvokeTransactionResponseResult get result; @JsonKey(ignore: true) - _$$InvokeTransactionResultCopyWith<_$InvokeTransactionResult> get copyWith => - throw _privateConstructorUsedError; + _$$InvokeTransactionResultImplCopyWith<_$InvokeTransactionResultImpl> + get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$InvokeTransactionErrorCopyWith<$Res> { - factory _$$InvokeTransactionErrorCopyWith(_$InvokeTransactionError value, - $Res Function(_$InvokeTransactionError) then) = - __$$InvokeTransactionErrorCopyWithImpl<$Res>; +abstract class _$$InvokeTransactionErrorImplCopyWith<$Res> { + factory _$$InvokeTransactionErrorImplCopyWith( + _$InvokeTransactionErrorImpl value, + $Res Function(_$InvokeTransactionErrorImpl) then) = + __$$InvokeTransactionErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -995,12 +1000,13 @@ abstract class _$$InvokeTransactionErrorCopyWith<$Res> { } /// @nodoc -class __$$InvokeTransactionErrorCopyWithImpl<$Res> +class __$$InvokeTransactionErrorImplCopyWithImpl<$Res> extends _$InvokeTransactionResponseCopyWithImpl<$Res, - _$InvokeTransactionError> - implements _$$InvokeTransactionErrorCopyWith<$Res> { - __$$InvokeTransactionErrorCopyWithImpl(_$InvokeTransactionError _value, - $Res Function(_$InvokeTransactionError) _then) + _$InvokeTransactionErrorImpl> + implements _$$InvokeTransactionErrorImplCopyWith<$Res> { + __$$InvokeTransactionErrorImplCopyWithImpl( + _$InvokeTransactionErrorImpl _value, + $Res Function(_$InvokeTransactionErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -1008,7 +1014,7 @@ class __$$InvokeTransactionErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$InvokeTransactionError( + return _then(_$InvokeTransactionErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -1027,12 +1033,12 @@ class __$$InvokeTransactionErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$InvokeTransactionError implements InvokeTransactionError { - const _$InvokeTransactionError({required this.error, final String? $type}) +class _$InvokeTransactionErrorImpl implements InvokeTransactionError { + const _$InvokeTransactionErrorImpl({required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$InvokeTransactionError.fromJson(Map json) => - _$$InvokeTransactionErrorFromJson(json); + factory _$InvokeTransactionErrorImpl.fromJson(Map json) => + _$$InvokeTransactionErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -1046,10 +1052,10 @@ class _$InvokeTransactionError implements InvokeTransactionError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$InvokeTransactionError && + other is _$InvokeTransactionErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -1060,9 +1066,9 @@ class _$InvokeTransactionError implements InvokeTransactionError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$InvokeTransactionErrorCopyWith<_$InvokeTransactionError> get copyWith => - __$$InvokeTransactionErrorCopyWithImpl<_$InvokeTransactionError>( - this, _$identity); + _$$InvokeTransactionErrorImplCopyWith<_$InvokeTransactionErrorImpl> + get copyWith => __$$InvokeTransactionErrorImplCopyWithImpl< + _$InvokeTransactionErrorImpl>(this, _$identity); @override @optionalTypeArgs @@ -1128,7 +1134,7 @@ class _$InvokeTransactionError implements InvokeTransactionError { @override Map toJson() { - return _$$InvokeTransactionErrorToJson( + return _$$InvokeTransactionErrorImplToJson( this, ); } @@ -1136,15 +1142,15 @@ class _$InvokeTransactionError implements InvokeTransactionError { abstract class InvokeTransactionError implements InvokeTransactionResponse { const factory InvokeTransactionError({required final JsonRpcApiError error}) = - _$InvokeTransactionError; + _$InvokeTransactionErrorImpl; factory InvokeTransactionError.fromJson(Map json) = - _$InvokeTransactionError.fromJson; + _$InvokeTransactionErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$InvokeTransactionErrorCopyWith<_$InvokeTransactionError> get copyWith => - throw _privateConstructorUsedError; + _$$InvokeTransactionErrorImplCopyWith<_$InvokeTransactionErrorImpl> + get copyWith => throw _privateConstructorUsedError; } InvokeTransactionResponseResult _$InvokeTransactionResponseResultFromJson( @@ -1199,25 +1205,25 @@ class _$InvokeTransactionResponseResultCopyWithImpl<$Res, } /// @nodoc -abstract class _$$_InvokeTransactionResponseResultCopyWith<$Res> +abstract class _$$InvokeTransactionResponseResultImplCopyWith<$Res> implements $InvokeTransactionResponseResultCopyWith<$Res> { - factory _$$_InvokeTransactionResponseResultCopyWith( - _$_InvokeTransactionResponseResult value, - $Res Function(_$_InvokeTransactionResponseResult) then) = - __$$_InvokeTransactionResponseResultCopyWithImpl<$Res>; + factory _$$InvokeTransactionResponseResultImplCopyWith( + _$InvokeTransactionResponseResultImpl value, + $Res Function(_$InvokeTransactionResponseResultImpl) then) = + __$$InvokeTransactionResponseResultImplCopyWithImpl<$Res>; @override @useResult $Res call({String transaction_hash}); } /// @nodoc -class __$$_InvokeTransactionResponseResultCopyWithImpl<$Res> +class __$$InvokeTransactionResponseResultImplCopyWithImpl<$Res> extends _$InvokeTransactionResponseResultCopyWithImpl<$Res, - _$_InvokeTransactionResponseResult> - implements _$$_InvokeTransactionResponseResultCopyWith<$Res> { - __$$_InvokeTransactionResponseResultCopyWithImpl( - _$_InvokeTransactionResponseResult _value, - $Res Function(_$_InvokeTransactionResponseResult) _then) + _$InvokeTransactionResponseResultImpl> + implements _$$InvokeTransactionResponseResultImplCopyWith<$Res> { + __$$InvokeTransactionResponseResultImplCopyWithImpl( + _$InvokeTransactionResponseResultImpl _value, + $Res Function(_$InvokeTransactionResponseResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -1225,7 +1231,7 @@ class __$$_InvokeTransactionResponseResultCopyWithImpl<$Res> $Res call({ Object? transaction_hash = null, }) { - return _then(_$_InvokeTransactionResponseResult( + return _then(_$InvokeTransactionResponseResultImpl( transaction_hash: null == transaction_hash ? _value.transaction_hash : transaction_hash // ignore: cast_nullable_to_non_nullable @@ -1236,13 +1242,13 @@ class __$$_InvokeTransactionResponseResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_InvokeTransactionResponseResult +class _$InvokeTransactionResponseResultImpl implements _InvokeTransactionResponseResult { - const _$_InvokeTransactionResponseResult({required this.transaction_hash}); + const _$InvokeTransactionResponseResultImpl({required this.transaction_hash}); - factory _$_InvokeTransactionResponseResult.fromJson( + factory _$InvokeTransactionResponseResultImpl.fromJson( Map json) => - _$$_InvokeTransactionResponseResultFromJson(json); + _$$InvokeTransactionResponseResultImplFromJson(json); @override final String transaction_hash; @@ -1253,10 +1259,10 @@ class _$_InvokeTransactionResponseResult } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_InvokeTransactionResponseResult && + other is _$InvokeTransactionResponseResultImpl && (identical(other.transaction_hash, transaction_hash) || other.transaction_hash == transaction_hash)); } @@ -1268,14 +1274,14 @@ class _$_InvokeTransactionResponseResult @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_InvokeTransactionResponseResultCopyWith< - _$_InvokeTransactionResponseResult> - get copyWith => __$$_InvokeTransactionResponseResultCopyWithImpl< - _$_InvokeTransactionResponseResult>(this, _$identity); + _$$InvokeTransactionResponseResultImplCopyWith< + _$InvokeTransactionResponseResultImpl> + get copyWith => __$$InvokeTransactionResponseResultImplCopyWithImpl< + _$InvokeTransactionResponseResultImpl>(this, _$identity); @override Map toJson() { - return _$$_InvokeTransactionResponseResultToJson( + return _$$InvokeTransactionResponseResultImplToJson( this, ); } @@ -1285,16 +1291,16 @@ abstract class _InvokeTransactionResponseResult implements InvokeTransactionResponseResult { const factory _InvokeTransactionResponseResult( {required final String transaction_hash}) = - _$_InvokeTransactionResponseResult; + _$InvokeTransactionResponseResultImpl; factory _InvokeTransactionResponseResult.fromJson(Map json) = - _$_InvokeTransactionResponseResult.fromJson; + _$InvokeTransactionResponseResultImpl.fromJson; @override String get transaction_hash; @override @JsonKey(ignore: true) - _$$_InvokeTransactionResponseResultCopyWith< - _$_InvokeTransactionResponseResult> + _$$InvokeTransactionResponseResultImplCopyWith< + _$InvokeTransactionResponseResultImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/invoke_transaction.g.dart b/packages/starknet_provider/lib/src/model/invoke_transaction.g.dart index 2dfbc8fc..10146023 100644 --- a/packages/starknet_provider/lib/src/model/invoke_transaction.g.dart +++ b/packages/starknet_provider/lib/src/model/invoke_transaction.g.dart @@ -6,22 +6,22 @@ part of 'invoke_transaction.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_InvokeTransactionRequest _$$_InvokeTransactionRequestFromJson( +_$InvokeTransactionRequestImpl _$$InvokeTransactionRequestImplFromJson( Map json) => - _$_InvokeTransactionRequest( + _$InvokeTransactionRequestImpl( invokeTransaction: InvokeTransaction.fromJson( json['invoke_transaction'] as Map), ); -Map _$$_InvokeTransactionRequestToJson( - _$_InvokeTransactionRequest instance) => +Map _$$InvokeTransactionRequestImplToJson( + _$InvokeTransactionRequestImpl instance) => { 'invoke_transaction': instance.invokeTransaction.toJson(), }; -_$_InvokeTransactionV0 _$$_InvokeTransactionV0FromJson( +_$InvokeTransactionV0Impl _$$InvokeTransactionV0ImplFromJson( Map json) => - _$_InvokeTransactionV0( + _$InvokeTransactionV0Impl( type: json['type'] as String? ?? 'INVOKE', maxFee: Felt.fromJson(json['max_fee'] as String), version: json['version'] as String? ?? '0x00', @@ -35,8 +35,8 @@ _$_InvokeTransactionV0 _$$_InvokeTransactionV0FromJson( .toList(), ); -Map _$$_InvokeTransactionV0ToJson( - _$_InvokeTransactionV0 instance) => +Map _$$InvokeTransactionV0ImplToJson( + _$InvokeTransactionV0Impl instance) => { 'type': instance.type, 'max_fee': maxFeeToJson(instance.maxFee), @@ -47,9 +47,9 @@ Map _$$_InvokeTransactionV0ToJson( 'calldata': instance.calldata.map((e) => e.toJson()).toList(), }; -_$_InvokeTransactionV1 _$$_InvokeTransactionV1FromJson( +_$InvokeTransactionV1Impl _$$InvokeTransactionV1ImplFromJson( Map json) => - _$_InvokeTransactionV1( + _$InvokeTransactionV1Impl( signature: (json['signature'] as List) .map((e) => Felt.fromJson(e as String)) .toList(), @@ -63,8 +63,8 @@ _$_InvokeTransactionV1 _$$_InvokeTransactionV1FromJson( type: json['type'] as String? ?? 'INVOKE', ); -Map _$$_InvokeTransactionV1ToJson( - _$_InvokeTransactionV1 instance) => +Map _$$InvokeTransactionV1ImplToJson( + _$InvokeTransactionV1Impl instance) => { 'signature': instance.signature.map((e) => e.toJson()).toList(), 'max_fee': maxFeeToJson(instance.maxFee), @@ -75,43 +75,43 @@ Map _$$_InvokeTransactionV1ToJson( 'type': instance.type, }; -_$InvokeTransactionResult _$$InvokeTransactionResultFromJson( +_$InvokeTransactionResultImpl _$$InvokeTransactionResultImplFromJson( Map json) => - _$InvokeTransactionResult( + _$InvokeTransactionResultImpl( result: InvokeTransactionResponseResult.fromJson( json['result'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$InvokeTransactionResultToJson( - _$InvokeTransactionResult instance) => +Map _$$InvokeTransactionResultImplToJson( + _$InvokeTransactionResultImpl instance) => { 'result': instance.result.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$InvokeTransactionError _$$InvokeTransactionErrorFromJson( +_$InvokeTransactionErrorImpl _$$InvokeTransactionErrorImplFromJson( Map json) => - _$InvokeTransactionError( + _$InvokeTransactionErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$InvokeTransactionErrorToJson( - _$InvokeTransactionError instance) => +Map _$$InvokeTransactionErrorImplToJson( + _$InvokeTransactionErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$_InvokeTransactionResponseResult _$$_InvokeTransactionResponseResultFromJson( - Map json) => - _$_InvokeTransactionResponseResult( - transaction_hash: json['transaction_hash'] as String, - ); +_$InvokeTransactionResponseResultImpl + _$$InvokeTransactionResponseResultImplFromJson(Map json) => + _$InvokeTransactionResponseResultImpl( + transaction_hash: json['transaction_hash'] as String, + ); -Map _$$_InvokeTransactionResponseResultToJson( - _$_InvokeTransactionResponseResult instance) => +Map _$$InvokeTransactionResponseResultImplToJson( + _$InvokeTransactionResponseResultImpl instance) => { 'transaction_hash': instance.transaction_hash, }; diff --git a/packages/starknet_provider/lib/src/model/json_rpc_api_error.freezed.dart b/packages/starknet_provider/lib/src/model/json_rpc_api_error.freezed.dart index e59b7f5f..bfc5c0b0 100644 --- a/packages/starknet_provider/lib/src/model/json_rpc_api_error.freezed.dart +++ b/packages/starknet_provider/lib/src/model/json_rpc_api_error.freezed.dart @@ -12,7 +12,7 @@ part of 'json_rpc_api_error.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); JsonRpcApiError _$JsonRpcApiErrorFromJson(Map json) { return _JsonRpcApiError.fromJson(json); @@ -68,22 +68,22 @@ class _$JsonRpcApiErrorCopyWithImpl<$Res, $Val extends JsonRpcApiError> } /// @nodoc -abstract class _$$_JsonRpcApiErrorCopyWith<$Res> +abstract class _$$JsonRpcApiErrorImplCopyWith<$Res> implements $JsonRpcApiErrorCopyWith<$Res> { - factory _$$_JsonRpcApiErrorCopyWith( - _$_JsonRpcApiError value, $Res Function(_$_JsonRpcApiError) then) = - __$$_JsonRpcApiErrorCopyWithImpl<$Res>; + factory _$$JsonRpcApiErrorImplCopyWith(_$JsonRpcApiErrorImpl value, + $Res Function(_$JsonRpcApiErrorImpl) then) = + __$$JsonRpcApiErrorImplCopyWithImpl<$Res>; @override @useResult $Res call({JsonRpcApiErrorCode code, String message}); } /// @nodoc -class __$$_JsonRpcApiErrorCopyWithImpl<$Res> - extends _$JsonRpcApiErrorCopyWithImpl<$Res, _$_JsonRpcApiError> - implements _$$_JsonRpcApiErrorCopyWith<$Res> { - __$$_JsonRpcApiErrorCopyWithImpl( - _$_JsonRpcApiError _value, $Res Function(_$_JsonRpcApiError) _then) +class __$$JsonRpcApiErrorImplCopyWithImpl<$Res> + extends _$JsonRpcApiErrorCopyWithImpl<$Res, _$JsonRpcApiErrorImpl> + implements _$$JsonRpcApiErrorImplCopyWith<$Res> { + __$$JsonRpcApiErrorImplCopyWithImpl( + _$JsonRpcApiErrorImpl _value, $Res Function(_$JsonRpcApiErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -92,7 +92,7 @@ class __$$_JsonRpcApiErrorCopyWithImpl<$Res> Object? code = null, Object? message = null, }) { - return _then(_$_JsonRpcApiError( + return _then(_$JsonRpcApiErrorImpl( code: null == code ? _value.code : code // ignore: cast_nullable_to_non_nullable @@ -107,11 +107,11 @@ class __$$_JsonRpcApiErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_JsonRpcApiError implements _JsonRpcApiError { - const _$_JsonRpcApiError({required this.code, required this.message}); +class _$JsonRpcApiErrorImpl implements _JsonRpcApiError { + const _$JsonRpcApiErrorImpl({required this.code, required this.message}); - factory _$_JsonRpcApiError.fromJson(Map json) => - _$$_JsonRpcApiErrorFromJson(json); + factory _$JsonRpcApiErrorImpl.fromJson(Map json) => + _$$JsonRpcApiErrorImplFromJson(json); @override final JsonRpcApiErrorCode code; @@ -124,10 +124,10 @@ class _$_JsonRpcApiError implements _JsonRpcApiError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_JsonRpcApiError && + other is _$JsonRpcApiErrorImpl && (identical(other.code, code) || other.code == code) && (identical(other.message, message) || other.message == message)); } @@ -139,12 +139,13 @@ class _$_JsonRpcApiError implements _JsonRpcApiError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_JsonRpcApiErrorCopyWith<_$_JsonRpcApiError> get copyWith => - __$$_JsonRpcApiErrorCopyWithImpl<_$_JsonRpcApiError>(this, _$identity); + _$$JsonRpcApiErrorImplCopyWith<_$JsonRpcApiErrorImpl> get copyWith => + __$$JsonRpcApiErrorImplCopyWithImpl<_$JsonRpcApiErrorImpl>( + this, _$identity); @override Map toJson() { - return _$$_JsonRpcApiErrorToJson( + return _$$JsonRpcApiErrorImplToJson( this, ); } @@ -153,10 +154,10 @@ class _$_JsonRpcApiError implements _JsonRpcApiError { abstract class _JsonRpcApiError implements JsonRpcApiError { const factory _JsonRpcApiError( {required final JsonRpcApiErrorCode code, - required final String message}) = _$_JsonRpcApiError; + required final String message}) = _$JsonRpcApiErrorImpl; factory _JsonRpcApiError.fromJson(Map json) = - _$_JsonRpcApiError.fromJson; + _$JsonRpcApiErrorImpl.fromJson; @override JsonRpcApiErrorCode get code; @@ -164,6 +165,6 @@ abstract class _JsonRpcApiError implements JsonRpcApiError { String get message; @override @JsonKey(ignore: true) - _$$_JsonRpcApiErrorCopyWith<_$_JsonRpcApiError> get copyWith => + _$$JsonRpcApiErrorImplCopyWith<_$JsonRpcApiErrorImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/json_rpc_api_error.g.dart b/packages/starknet_provider/lib/src/model/json_rpc_api_error.g.dart index 0f894a47..d8aceab6 100644 --- a/packages/starknet_provider/lib/src/model/json_rpc_api_error.g.dart +++ b/packages/starknet_provider/lib/src/model/json_rpc_api_error.g.dart @@ -6,13 +6,15 @@ part of 'json_rpc_api_error.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_JsonRpcApiError _$$_JsonRpcApiErrorFromJson(Map json) => - _$_JsonRpcApiError( +_$JsonRpcApiErrorImpl _$$JsonRpcApiErrorImplFromJson( + Map json) => + _$JsonRpcApiErrorImpl( code: $enumDecode(_$JsonRpcApiErrorCodeEnumMap, json['code']), message: json['message'] as String, ); -Map _$$_JsonRpcApiErrorToJson(_$_JsonRpcApiError instance) => +Map _$$JsonRpcApiErrorImplToJson( + _$JsonRpcApiErrorImpl instance) => { 'code': _$JsonRpcApiErrorCodeEnumMap[instance.code]!, 'message': instance.message, diff --git a/packages/starknet_provider/lib/src/model/msg_to_l1.freezed.dart b/packages/starknet_provider/lib/src/model/msg_to_l1.freezed.dart index bc24f1e2..a927e913 100644 --- a/packages/starknet_provider/lib/src/model/msg_to_l1.freezed.dart +++ b/packages/starknet_provider/lib/src/model/msg_to_l1.freezed.dart @@ -12,7 +12,7 @@ part of 'msg_to_l1.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); MsgToL1 _$MsgToL1FromJson(Map json) { return _MsgToL1.fromJson(json); @@ -66,20 +66,21 @@ class _$MsgToL1CopyWithImpl<$Res, $Val extends MsgToL1> } /// @nodoc -abstract class _$$_MsgToL1CopyWith<$Res> implements $MsgToL1CopyWith<$Res> { - factory _$$_MsgToL1CopyWith( - _$_MsgToL1 value, $Res Function(_$_MsgToL1) then) = - __$$_MsgToL1CopyWithImpl<$Res>; +abstract class _$$MsgToL1ImplCopyWith<$Res> implements $MsgToL1CopyWith<$Res> { + factory _$$MsgToL1ImplCopyWith( + _$MsgToL1Impl value, $Res Function(_$MsgToL1Impl) then) = + __$$MsgToL1ImplCopyWithImpl<$Res>; @override @useResult $Res call({Felt? toAddress, List? payload}); } /// @nodoc -class __$$_MsgToL1CopyWithImpl<$Res> - extends _$MsgToL1CopyWithImpl<$Res, _$_MsgToL1> - implements _$$_MsgToL1CopyWith<$Res> { - __$$_MsgToL1CopyWithImpl(_$_MsgToL1 _value, $Res Function(_$_MsgToL1) _then) +class __$$MsgToL1ImplCopyWithImpl<$Res> + extends _$MsgToL1CopyWithImpl<$Res, _$MsgToL1Impl> + implements _$$MsgToL1ImplCopyWith<$Res> { + __$$MsgToL1ImplCopyWithImpl( + _$MsgToL1Impl _value, $Res Function(_$MsgToL1Impl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -88,7 +89,7 @@ class __$$_MsgToL1CopyWithImpl<$Res> Object? toAddress = freezed, Object? payload = freezed, }) { - return _then(_$_MsgToL1( + return _then(_$MsgToL1Impl( toAddress: freezed == toAddress ? _value.toAddress : toAddress // ignore: cast_nullable_to_non_nullable @@ -103,13 +104,13 @@ class __$$_MsgToL1CopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_MsgToL1 implements _MsgToL1 { - const _$_MsgToL1( +class _$MsgToL1Impl implements _MsgToL1 { + const _$MsgToL1Impl( {required this.toAddress, required final List? payload}) : _payload = payload; - factory _$_MsgToL1.fromJson(Map json) => - _$$_MsgToL1FromJson(json); + factory _$MsgToL1Impl.fromJson(Map json) => + _$$MsgToL1ImplFromJson(json); @override final Felt? toAddress; @@ -129,10 +130,10 @@ class _$_MsgToL1 implements _MsgToL1 { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_MsgToL1 && + other is _$MsgToL1Impl && (identical(other.toAddress, toAddress) || other.toAddress == toAddress) && const DeepCollectionEquality().equals(other._payload, _payload)); @@ -146,12 +147,12 @@ class _$_MsgToL1 implements _MsgToL1 { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_MsgToL1CopyWith<_$_MsgToL1> get copyWith => - __$$_MsgToL1CopyWithImpl<_$_MsgToL1>(this, _$identity); + _$$MsgToL1ImplCopyWith<_$MsgToL1Impl> get copyWith => + __$$MsgToL1ImplCopyWithImpl<_$MsgToL1Impl>(this, _$identity); @override Map toJson() { - return _$$_MsgToL1ToJson( + return _$$MsgToL1ImplToJson( this, ); } @@ -160,9 +161,9 @@ class _$_MsgToL1 implements _MsgToL1 { abstract class _MsgToL1 implements MsgToL1 { const factory _MsgToL1( {required final Felt? toAddress, - required final List? payload}) = _$_MsgToL1; + required final List? payload}) = _$MsgToL1Impl; - factory _MsgToL1.fromJson(Map json) = _$_MsgToL1.fromJson; + factory _MsgToL1.fromJson(Map json) = _$MsgToL1Impl.fromJson; @override Felt? get toAddress; @@ -170,6 +171,6 @@ abstract class _MsgToL1 implements MsgToL1 { List? get payload; @override @JsonKey(ignore: true) - _$$_MsgToL1CopyWith<_$_MsgToL1> get copyWith => + _$$MsgToL1ImplCopyWith<_$MsgToL1Impl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/msg_to_l1.g.dart b/packages/starknet_provider/lib/src/model/msg_to_l1.g.dart index 3c3ef2dc..7cbea5ae 100644 --- a/packages/starknet_provider/lib/src/model/msg_to_l1.g.dart +++ b/packages/starknet_provider/lib/src/model/msg_to_l1.g.dart @@ -6,7 +6,8 @@ part of 'msg_to_l1.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_MsgToL1 _$$_MsgToL1FromJson(Map json) => _$_MsgToL1( +_$MsgToL1Impl _$$MsgToL1ImplFromJson(Map json) => + _$MsgToL1Impl( toAddress: json['to_address'] == null ? null : Felt.fromJson(json['to_address'] as String), @@ -15,7 +16,7 @@ _$_MsgToL1 _$$_MsgToL1FromJson(Map json) => _$_MsgToL1( .toList(), ); -Map _$$_MsgToL1ToJson(_$_MsgToL1 instance) => +Map _$$MsgToL1ImplToJson(_$MsgToL1Impl instance) => { 'to_address': instance.toAddress?.toJson(), 'payload': instance.payload?.map((e) => e.toJson()).toList(), diff --git a/packages/starknet_provider/lib/src/model/msg_to_l2.freezed.dart b/packages/starknet_provider/lib/src/model/msg_to_l2.freezed.dart index 510c5861..fb336d99 100644 --- a/packages/starknet_provider/lib/src/model/msg_to_l2.freezed.dart +++ b/packages/starknet_provider/lib/src/model/msg_to_l2.freezed.dart @@ -12,7 +12,7 @@ part of 'msg_to_l2.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); MsgToL2 _$MsgToL2FromJson(Map json) { return _MsgToL2.fromJson(json); @@ -66,20 +66,21 @@ class _$MsgToL2CopyWithImpl<$Res, $Val extends MsgToL2> } /// @nodoc -abstract class _$$_MsgToL2CopyWith<$Res> implements $MsgToL2CopyWith<$Res> { - factory _$$_MsgToL2CopyWith( - _$_MsgToL2 value, $Res Function(_$_MsgToL2) then) = - __$$_MsgToL2CopyWithImpl<$Res>; +abstract class _$$MsgToL2ImplCopyWith<$Res> implements $MsgToL2CopyWith<$Res> { + factory _$$MsgToL2ImplCopyWith( + _$MsgToL2Impl value, $Res Function(_$MsgToL2Impl) then) = + __$$MsgToL2ImplCopyWithImpl<$Res>; @override @useResult $Res call({String? fromAddress, List? payload}); } /// @nodoc -class __$$_MsgToL2CopyWithImpl<$Res> - extends _$MsgToL2CopyWithImpl<$Res, _$_MsgToL2> - implements _$$_MsgToL2CopyWith<$Res> { - __$$_MsgToL2CopyWithImpl(_$_MsgToL2 _value, $Res Function(_$_MsgToL2) _then) +class __$$MsgToL2ImplCopyWithImpl<$Res> + extends _$MsgToL2CopyWithImpl<$Res, _$MsgToL2Impl> + implements _$$MsgToL2ImplCopyWith<$Res> { + __$$MsgToL2ImplCopyWithImpl( + _$MsgToL2Impl _value, $Res Function(_$MsgToL2Impl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -88,7 +89,7 @@ class __$$_MsgToL2CopyWithImpl<$Res> Object? fromAddress = freezed, Object? payload = freezed, }) { - return _then(_$_MsgToL2( + return _then(_$MsgToL2Impl( fromAddress: freezed == fromAddress ? _value.fromAddress : fromAddress // ignore: cast_nullable_to_non_nullable @@ -103,13 +104,13 @@ class __$$_MsgToL2CopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_MsgToL2 implements _MsgToL2 { - const _$_MsgToL2( +class _$MsgToL2Impl implements _MsgToL2 { + const _$MsgToL2Impl( {required this.fromAddress, required final List? payload}) : _payload = payload; - factory _$_MsgToL2.fromJson(Map json) => - _$$_MsgToL2FromJson(json); + factory _$MsgToL2Impl.fromJson(Map json) => + _$$MsgToL2ImplFromJson(json); @override final String? fromAddress; @@ -129,10 +130,10 @@ class _$_MsgToL2 implements _MsgToL2 { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_MsgToL2 && + other is _$MsgToL2Impl && (identical(other.fromAddress, fromAddress) || other.fromAddress == fromAddress) && const DeepCollectionEquality().equals(other._payload, _payload)); @@ -146,12 +147,12 @@ class _$_MsgToL2 implements _MsgToL2 { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_MsgToL2CopyWith<_$_MsgToL2> get copyWith => - __$$_MsgToL2CopyWithImpl<_$_MsgToL2>(this, _$identity); + _$$MsgToL2ImplCopyWith<_$MsgToL2Impl> get copyWith => + __$$MsgToL2ImplCopyWithImpl<_$MsgToL2Impl>(this, _$identity); @override Map toJson() { - return _$$_MsgToL2ToJson( + return _$$MsgToL2ImplToJson( this, ); } @@ -160,9 +161,9 @@ class _$_MsgToL2 implements _MsgToL2 { abstract class _MsgToL2 implements MsgToL2 { const factory _MsgToL2( {required final String? fromAddress, - required final List? payload}) = _$_MsgToL2; + required final List? payload}) = _$MsgToL2Impl; - factory _MsgToL2.fromJson(Map json) = _$_MsgToL2.fromJson; + factory _MsgToL2.fromJson(Map json) = _$MsgToL2Impl.fromJson; @override String? get fromAddress; @@ -170,6 +171,6 @@ abstract class _MsgToL2 implements MsgToL2 { List? get payload; @override @JsonKey(ignore: true) - _$$_MsgToL2CopyWith<_$_MsgToL2> get copyWith => + _$$MsgToL2ImplCopyWith<_$MsgToL2Impl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/msg_to_l2.g.dart b/packages/starknet_provider/lib/src/model/msg_to_l2.g.dart index dd9b3711..905e4841 100644 --- a/packages/starknet_provider/lib/src/model/msg_to_l2.g.dart +++ b/packages/starknet_provider/lib/src/model/msg_to_l2.g.dart @@ -6,14 +6,15 @@ part of 'msg_to_l2.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_MsgToL2 _$$_MsgToL2FromJson(Map json) => _$_MsgToL2( +_$MsgToL2Impl _$$MsgToL2ImplFromJson(Map json) => + _$MsgToL2Impl( fromAddress: json['from_address'] as String?, payload: (json['payload'] as List?) ?.map((e) => Felt.fromJson(e as String)) .toList(), ); -Map _$$_MsgToL2ToJson(_$_MsgToL2 instance) => +Map _$$MsgToL2ImplToJson(_$MsgToL2Impl instance) => { 'from_address': instance.fromAddress, 'payload': instance.payload?.map((e) => e.toJson()).toList(), diff --git a/packages/starknet_provider/lib/src/model/pending_transactions.freezed.dart b/packages/starknet_provider/lib/src/model/pending_transactions.freezed.dart index 722f4c21..1788f8fa 100644 --- a/packages/starknet_provider/lib/src/model/pending_transactions.freezed.dart +++ b/packages/starknet_provider/lib/src/model/pending_transactions.freezed.dart @@ -12,7 +12,7 @@ part of 'pending_transactions.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); PendingTransactions _$PendingTransactionsFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -92,21 +92,23 @@ class _$PendingTransactionsCopyWithImpl<$Res, $Val extends PendingTransactions> } /// @nodoc -abstract class _$$PendingTransactionsResultCopyWith<$Res> { - factory _$$PendingTransactionsResultCopyWith( - _$PendingTransactionsResult value, - $Res Function(_$PendingTransactionsResult) then) = - __$$PendingTransactionsResultCopyWithImpl<$Res>; +abstract class _$$PendingTransactionsResultImplCopyWith<$Res> { + factory _$$PendingTransactionsResultImplCopyWith( + _$PendingTransactionsResultImpl value, + $Res Function(_$PendingTransactionsResultImpl) then) = + __$$PendingTransactionsResultImplCopyWithImpl<$Res>; @useResult $Res call({List result}); } /// @nodoc -class __$$PendingTransactionsResultCopyWithImpl<$Res> - extends _$PendingTransactionsCopyWithImpl<$Res, _$PendingTransactionsResult> - implements _$$PendingTransactionsResultCopyWith<$Res> { - __$$PendingTransactionsResultCopyWithImpl(_$PendingTransactionsResult _value, - $Res Function(_$PendingTransactionsResult) _then) +class __$$PendingTransactionsResultImplCopyWithImpl<$Res> + extends _$PendingTransactionsCopyWithImpl<$Res, + _$PendingTransactionsResultImpl> + implements _$$PendingTransactionsResultImplCopyWith<$Res> { + __$$PendingTransactionsResultImplCopyWithImpl( + _$PendingTransactionsResultImpl _value, + $Res Function(_$PendingTransactionsResultImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -114,7 +116,7 @@ class __$$PendingTransactionsResultCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$PendingTransactionsResult( + return _then(_$PendingTransactionsResultImpl( result: null == result ? _value._result : result // ignore: cast_nullable_to_non_nullable @@ -125,14 +127,14 @@ class __$$PendingTransactionsResultCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$PendingTransactionsResult implements PendingTransactionsResult { - const _$PendingTransactionsResult( +class _$PendingTransactionsResultImpl implements PendingTransactionsResult { + const _$PendingTransactionsResultImpl( {required final List result, final String? $type}) : _result = result, $type = $type ?? 'result'; - factory _$PendingTransactionsResult.fromJson(Map json) => - _$$PendingTransactionsResultFromJson(json); + factory _$PendingTransactionsResultImpl.fromJson(Map json) => + _$$PendingTransactionsResultImplFromJson(json); final List _result; @override @@ -151,10 +153,10 @@ class _$PendingTransactionsResult implements PendingTransactionsResult { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$PendingTransactionsResult && + other is _$PendingTransactionsResultImpl && const DeepCollectionEquality().equals(other._result, _result)); } @@ -166,9 +168,9 @@ class _$PendingTransactionsResult implements PendingTransactionsResult { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$PendingTransactionsResultCopyWith<_$PendingTransactionsResult> - get copyWith => __$$PendingTransactionsResultCopyWithImpl< - _$PendingTransactionsResult>(this, _$identity); + _$$PendingTransactionsResultImplCopyWith<_$PendingTransactionsResultImpl> + get copyWith => __$$PendingTransactionsResultImplCopyWithImpl< + _$PendingTransactionsResultImpl>(this, _$identity); @override @optionalTypeArgs @@ -234,7 +236,7 @@ class _$PendingTransactionsResult implements PendingTransactionsResult { @override Map toJson() { - return _$$PendingTransactionsResultToJson( + return _$$PendingTransactionsResultImplToJson( this, ); } @@ -242,22 +244,23 @@ class _$PendingTransactionsResult implements PendingTransactionsResult { abstract class PendingTransactionsResult implements PendingTransactions { const factory PendingTransactionsResult({required final List result}) = - _$PendingTransactionsResult; + _$PendingTransactionsResultImpl; factory PendingTransactionsResult.fromJson(Map json) = - _$PendingTransactionsResult.fromJson; + _$PendingTransactionsResultImpl.fromJson; List get result; @JsonKey(ignore: true) - _$$PendingTransactionsResultCopyWith<_$PendingTransactionsResult> + _$$PendingTransactionsResultImplCopyWith<_$PendingTransactionsResultImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$PendingTransactionsErrorCopyWith<$Res> { - factory _$$PendingTransactionsErrorCopyWith(_$PendingTransactionsError value, - $Res Function(_$PendingTransactionsError) then) = - __$$PendingTransactionsErrorCopyWithImpl<$Res>; +abstract class _$$PendingTransactionsErrorImplCopyWith<$Res> { + factory _$$PendingTransactionsErrorImplCopyWith( + _$PendingTransactionsErrorImpl value, + $Res Function(_$PendingTransactionsErrorImpl) then) = + __$$PendingTransactionsErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -265,11 +268,13 @@ abstract class _$$PendingTransactionsErrorCopyWith<$Res> { } /// @nodoc -class __$$PendingTransactionsErrorCopyWithImpl<$Res> - extends _$PendingTransactionsCopyWithImpl<$Res, _$PendingTransactionsError> - implements _$$PendingTransactionsErrorCopyWith<$Res> { - __$$PendingTransactionsErrorCopyWithImpl(_$PendingTransactionsError _value, - $Res Function(_$PendingTransactionsError) _then) +class __$$PendingTransactionsErrorImplCopyWithImpl<$Res> + extends _$PendingTransactionsCopyWithImpl<$Res, + _$PendingTransactionsErrorImpl> + implements _$$PendingTransactionsErrorImplCopyWith<$Res> { + __$$PendingTransactionsErrorImplCopyWithImpl( + _$PendingTransactionsErrorImpl _value, + $Res Function(_$PendingTransactionsErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -277,7 +282,7 @@ class __$$PendingTransactionsErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$PendingTransactionsError( + return _then(_$PendingTransactionsErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -296,12 +301,13 @@ class __$$PendingTransactionsErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$PendingTransactionsError implements PendingTransactionsError { - const _$PendingTransactionsError({required this.error, final String? $type}) +class _$PendingTransactionsErrorImpl implements PendingTransactionsError { + const _$PendingTransactionsErrorImpl( + {required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$PendingTransactionsError.fromJson(Map json) => - _$$PendingTransactionsErrorFromJson(json); + factory _$PendingTransactionsErrorImpl.fromJson(Map json) => + _$$PendingTransactionsErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -315,10 +321,10 @@ class _$PendingTransactionsError implements PendingTransactionsError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$PendingTransactionsError && + other is _$PendingTransactionsErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -329,10 +335,9 @@ class _$PendingTransactionsError implements PendingTransactionsError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$PendingTransactionsErrorCopyWith<_$PendingTransactionsError> - get copyWith => - __$$PendingTransactionsErrorCopyWithImpl<_$PendingTransactionsError>( - this, _$identity); + _$$PendingTransactionsErrorImplCopyWith<_$PendingTransactionsErrorImpl> + get copyWith => __$$PendingTransactionsErrorImplCopyWithImpl< + _$PendingTransactionsErrorImpl>(this, _$identity); @override @optionalTypeArgs @@ -398,7 +403,7 @@ class _$PendingTransactionsError implements PendingTransactionsError { @override Map toJson() { - return _$$PendingTransactionsErrorToJson( + return _$$PendingTransactionsErrorImplToJson( this, ); } @@ -406,13 +411,13 @@ class _$PendingTransactionsError implements PendingTransactionsError { abstract class PendingTransactionsError implements PendingTransactions { const factory PendingTransactionsError( - {required final JsonRpcApiError error}) = _$PendingTransactionsError; + {required final JsonRpcApiError error}) = _$PendingTransactionsErrorImpl; factory PendingTransactionsError.fromJson(Map json) = - _$PendingTransactionsError.fromJson; + _$PendingTransactionsErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$PendingTransactionsErrorCopyWith<_$PendingTransactionsError> + _$$PendingTransactionsErrorImplCopyWith<_$PendingTransactionsErrorImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/pending_transactions.g.dart b/packages/starknet_provider/lib/src/model/pending_transactions.g.dart index 40bc8131..c64446aa 100644 --- a/packages/starknet_provider/lib/src/model/pending_transactions.g.dart +++ b/packages/starknet_provider/lib/src/model/pending_transactions.g.dart @@ -6,31 +6,31 @@ part of 'pending_transactions.dart'; // JsonSerializableGenerator // ************************************************************************** -_$PendingTransactionsResult _$$PendingTransactionsResultFromJson( +_$PendingTransactionsResultImpl _$$PendingTransactionsResultImplFromJson( Map json) => - _$PendingTransactionsResult( + _$PendingTransactionsResultImpl( result: (json['result'] as List) .map((e) => Txn.fromJson(e as Map)) .toList(), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$PendingTransactionsResultToJson( - _$PendingTransactionsResult instance) => +Map _$$PendingTransactionsResultImplToJson( + _$PendingTransactionsResultImpl instance) => { 'result': instance.result.map((e) => e.toJson()).toList(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$PendingTransactionsError _$$PendingTransactionsErrorFromJson( +_$PendingTransactionsErrorImpl _$$PendingTransactionsErrorImplFromJson( Map json) => - _$PendingTransactionsError( + _$PendingTransactionsErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$PendingTransactionsErrorToJson( - _$PendingTransactionsError instance) => +Map _$$PendingTransactionsErrorImplToJson( + _$PendingTransactionsErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, diff --git a/packages/starknet_provider/lib/src/model/state_update.freezed.dart b/packages/starknet_provider/lib/src/model/state_update.freezed.dart index 843b1bdd..26290c77 100644 --- a/packages/starknet_provider/lib/src/model/state_update.freezed.dart +++ b/packages/starknet_provider/lib/src/model/state_update.freezed.dart @@ -12,7 +12,7 @@ part of 'state_update.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); StateUpdate _$StateUpdateFromJson(Map json) { return _StateUpdate.fromJson(json); @@ -90,11 +90,11 @@ class _$StateUpdateCopyWithImpl<$Res, $Val extends StateUpdate> } /// @nodoc -abstract class _$$_StateUpdateCopyWith<$Res> +abstract class _$$StateUpdateImplCopyWith<$Res> implements $StateUpdateCopyWith<$Res> { - factory _$$_StateUpdateCopyWith( - _$_StateUpdate value, $Res Function(_$_StateUpdate) then) = - __$$_StateUpdateCopyWithImpl<$Res>; + factory _$$StateUpdateImplCopyWith( + _$StateUpdateImpl value, $Res Function(_$StateUpdateImpl) then) = + __$$StateUpdateImplCopyWithImpl<$Res>; @override @useResult $Res call({Felt blockHash, Felt newRoot, Felt oldRoot, StateDiff stateDiff}); @@ -104,11 +104,11 @@ abstract class _$$_StateUpdateCopyWith<$Res> } /// @nodoc -class __$$_StateUpdateCopyWithImpl<$Res> - extends _$StateUpdateCopyWithImpl<$Res, _$_StateUpdate> - implements _$$_StateUpdateCopyWith<$Res> { - __$$_StateUpdateCopyWithImpl( - _$_StateUpdate _value, $Res Function(_$_StateUpdate) _then) +class __$$StateUpdateImplCopyWithImpl<$Res> + extends _$StateUpdateCopyWithImpl<$Res, _$StateUpdateImpl> + implements _$$StateUpdateImplCopyWith<$Res> { + __$$StateUpdateImplCopyWithImpl( + _$StateUpdateImpl _value, $Res Function(_$StateUpdateImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -119,7 +119,7 @@ class __$$_StateUpdateCopyWithImpl<$Res> Object? oldRoot = null, Object? stateDiff = null, }) { - return _then(_$_StateUpdate( + return _then(_$StateUpdateImpl( blockHash: null == blockHash ? _value.blockHash : blockHash // ignore: cast_nullable_to_non_nullable @@ -142,15 +142,15 @@ class __$$_StateUpdateCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_StateUpdate implements _StateUpdate { - const _$_StateUpdate( +class _$StateUpdateImpl implements _StateUpdate { + const _$StateUpdateImpl( {required this.blockHash, required this.newRoot, required this.oldRoot, required this.stateDiff}); - factory _$_StateUpdate.fromJson(Map json) => - _$$_StateUpdateFromJson(json); + factory _$StateUpdateImpl.fromJson(Map json) => + _$$StateUpdateImplFromJson(json); @override final Felt blockHash; @@ -167,10 +167,10 @@ class _$_StateUpdate implements _StateUpdate { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_StateUpdate && + other is _$StateUpdateImpl && (identical(other.blockHash, blockHash) || other.blockHash == blockHash) && (identical(other.newRoot, newRoot) || other.newRoot == newRoot) && @@ -187,12 +187,12 @@ class _$_StateUpdate implements _StateUpdate { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_StateUpdateCopyWith<_$_StateUpdate> get copyWith => - __$$_StateUpdateCopyWithImpl<_$_StateUpdate>(this, _$identity); + _$$StateUpdateImplCopyWith<_$StateUpdateImpl> get copyWith => + __$$StateUpdateImplCopyWithImpl<_$StateUpdateImpl>(this, _$identity); @override Map toJson() { - return _$$_StateUpdateToJson( + return _$$StateUpdateImplToJson( this, ); } @@ -203,10 +203,10 @@ abstract class _StateUpdate implements StateUpdate { {required final Felt blockHash, required final Felt newRoot, required final Felt oldRoot, - required final StateDiff stateDiff}) = _$_StateUpdate; + required final StateDiff stateDiff}) = _$StateUpdateImpl; factory _StateUpdate.fromJson(Map json) = - _$_StateUpdate.fromJson; + _$StateUpdateImpl.fromJson; @override Felt get blockHash; @@ -218,7 +218,7 @@ abstract class _StateUpdate implements StateUpdate { StateDiff get stateDiff; @override @JsonKey(ignore: true) - _$$_StateUpdateCopyWith<_$_StateUpdate> get copyWith => + _$$StateUpdateImplCopyWith<_$StateUpdateImpl> get copyWith => throw _privateConstructorUsedError; } @@ -309,10 +309,11 @@ class _$StateDiffCopyWithImpl<$Res, $Val extends StateDiff> } /// @nodoc -abstract class _$$_StateDiffCopyWith<$Res> implements $StateDiffCopyWith<$Res> { - factory _$$_StateDiffCopyWith( - _$_StateDiff value, $Res Function(_$_StateDiff) then) = - __$$_StateDiffCopyWithImpl<$Res>; +abstract class _$$StateDiffImplCopyWith<$Res> + implements $StateDiffCopyWith<$Res> { + factory _$$StateDiffImplCopyWith( + _$StateDiffImpl value, $Res Function(_$StateDiffImpl) then) = + __$$StateDiffImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -325,11 +326,11 @@ abstract class _$$_StateDiffCopyWith<$Res> implements $StateDiffCopyWith<$Res> { } /// @nodoc -class __$$_StateDiffCopyWithImpl<$Res> - extends _$StateDiffCopyWithImpl<$Res, _$_StateDiff> - implements _$$_StateDiffCopyWith<$Res> { - __$$_StateDiffCopyWithImpl( - _$_StateDiff _value, $Res Function(_$_StateDiff) _then) +class __$$StateDiffImplCopyWithImpl<$Res> + extends _$StateDiffCopyWithImpl<$Res, _$StateDiffImpl> + implements _$$StateDiffImplCopyWith<$Res> { + __$$StateDiffImplCopyWithImpl( + _$StateDiffImpl _value, $Res Function(_$StateDiffImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -342,7 +343,7 @@ class __$$_StateDiffCopyWithImpl<$Res> Object? replacedClasses = null, Object? nonces = null, }) { - return _then(_$_StateDiff( + return _then(_$StateDiffImpl( storageDiffs: null == storageDiffs ? _value._storageDiffs : storageDiffs // ignore: cast_nullable_to_non_nullable @@ -373,8 +374,8 @@ class __$$_StateDiffCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_StateDiff implements _StateDiff { - const _$_StateDiff( +class _$StateDiffImpl implements _StateDiff { + const _$StateDiffImpl( {required final List storageDiffs, required final List deprecatedDeclaredClasses, required final List declaredClasses, @@ -388,8 +389,8 @@ class _$_StateDiff implements _StateDiff { _replacedClasses = replacedClasses, _nonces = nonces; - factory _$_StateDiff.fromJson(Map json) => - _$$_StateDiffFromJson(json); + factory _$StateDiffImpl.fromJson(Map json) => + _$$StateDiffImplFromJson(json); final List _storageDiffs; @override @@ -447,10 +448,10 @@ class _$_StateDiff implements _StateDiff { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_StateDiff && + other is _$StateDiffImpl && const DeepCollectionEquality() .equals(other._storageDiffs, _storageDiffs) && const DeepCollectionEquality().equals( @@ -478,12 +479,12 @@ class _$_StateDiff implements _StateDiff { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_StateDiffCopyWith<_$_StateDiff> get copyWith => - __$$_StateDiffCopyWithImpl<_$_StateDiff>(this, _$identity); + _$$StateDiffImplCopyWith<_$StateDiffImpl> get copyWith => + __$$StateDiffImplCopyWithImpl<_$StateDiffImpl>(this, _$identity); @override Map toJson() { - return _$$_StateDiffToJson( + return _$$StateDiffImplToJson( this, ); } @@ -496,10 +497,10 @@ abstract class _StateDiff implements StateDiff { required final List declaredClasses, required final List deployedContracts, required final List replacedClasses, - required final List nonces}) = _$_StateDiff; + required final List nonces}) = _$StateDiffImpl; factory _StateDiff.fromJson(Map json) = - _$_StateDiff.fromJson; + _$StateDiffImpl.fromJson; @override List get storageDiffs; @@ -515,7 +516,7 @@ abstract class _StateDiff implements StateDiff { List get nonces; @override @JsonKey(ignore: true) - _$$_StateDiffCopyWith<_$_StateDiff> get copyWith => + _$$StateDiffImplCopyWith<_$StateDiffImpl> get copyWith => throw _privateConstructorUsedError; } @@ -575,23 +576,25 @@ class _$NonceAndContractAddressCopyWithImpl<$Res, } /// @nodoc -abstract class _$$_NonceAndContractAddressCopyWith<$Res> +abstract class _$$NonceAndContractAddressImplCopyWith<$Res> implements $NonceAndContractAddressCopyWith<$Res> { - factory _$$_NonceAndContractAddressCopyWith(_$_NonceAndContractAddress value, - $Res Function(_$_NonceAndContractAddress) then) = - __$$_NonceAndContractAddressCopyWithImpl<$Res>; + factory _$$NonceAndContractAddressImplCopyWith( + _$NonceAndContractAddressImpl value, + $Res Function(_$NonceAndContractAddressImpl) then) = + __$$NonceAndContractAddressImplCopyWithImpl<$Res>; @override @useResult $Res call({Felt nonce, Felt contractAddress}); } /// @nodoc -class __$$_NonceAndContractAddressCopyWithImpl<$Res> +class __$$NonceAndContractAddressImplCopyWithImpl<$Res> extends _$NonceAndContractAddressCopyWithImpl<$Res, - _$_NonceAndContractAddress> - implements _$$_NonceAndContractAddressCopyWith<$Res> { - __$$_NonceAndContractAddressCopyWithImpl(_$_NonceAndContractAddress _value, - $Res Function(_$_NonceAndContractAddress) _then) + _$NonceAndContractAddressImpl> + implements _$$NonceAndContractAddressImplCopyWith<$Res> { + __$$NonceAndContractAddressImplCopyWithImpl( + _$NonceAndContractAddressImpl _value, + $Res Function(_$NonceAndContractAddressImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -600,7 +603,7 @@ class __$$_NonceAndContractAddressCopyWithImpl<$Res> Object? nonce = null, Object? contractAddress = null, }) { - return _then(_$_NonceAndContractAddress( + return _then(_$NonceAndContractAddressImpl( nonce: null == nonce ? _value.nonce : nonce // ignore: cast_nullable_to_non_nullable @@ -615,12 +618,12 @@ class __$$_NonceAndContractAddressCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_NonceAndContractAddress implements _NonceAndContractAddress { - const _$_NonceAndContractAddress( +class _$NonceAndContractAddressImpl implements _NonceAndContractAddress { + const _$NonceAndContractAddressImpl( {required this.nonce, required this.contractAddress}); - factory _$_NonceAndContractAddress.fromJson(Map json) => - _$$_NonceAndContractAddressFromJson(json); + factory _$NonceAndContractAddressImpl.fromJson(Map json) => + _$$NonceAndContractAddressImplFromJson(json); @override final Felt nonce; @@ -633,10 +636,10 @@ class _$_NonceAndContractAddress implements _NonceAndContractAddress { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_NonceAndContractAddress && + other is _$NonceAndContractAddressImpl && (identical(other.nonce, nonce) || other.nonce == nonce) && (identical(other.contractAddress, contractAddress) || other.contractAddress == contractAddress)); @@ -649,14 +652,13 @@ class _$_NonceAndContractAddress implements _NonceAndContractAddress { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_NonceAndContractAddressCopyWith<_$_NonceAndContractAddress> - get copyWith => - __$$_NonceAndContractAddressCopyWithImpl<_$_NonceAndContractAddress>( - this, _$identity); + _$$NonceAndContractAddressImplCopyWith<_$NonceAndContractAddressImpl> + get copyWith => __$$NonceAndContractAddressImplCopyWithImpl< + _$NonceAndContractAddressImpl>(this, _$identity); @override Map toJson() { - return _$$_NonceAndContractAddressToJson( + return _$$NonceAndContractAddressImplToJson( this, ); } @@ -665,10 +667,10 @@ class _$_NonceAndContractAddress implements _NonceAndContractAddress { abstract class _NonceAndContractAddress implements NonceAndContractAddress { const factory _NonceAndContractAddress( {required final Felt nonce, - required final Felt contractAddress}) = _$_NonceAndContractAddress; + required final Felt contractAddress}) = _$NonceAndContractAddressImpl; factory _NonceAndContractAddress.fromJson(Map json) = - _$_NonceAndContractAddress.fromJson; + _$NonceAndContractAddressImpl.fromJson; @override Felt get nonce; @@ -676,7 +678,7 @@ abstract class _NonceAndContractAddress implements NonceAndContractAddress { Felt get contractAddress; @override @JsonKey(ignore: true) - _$$_NonceAndContractAddressCopyWith<_$_NonceAndContractAddress> + _$$NonceAndContractAddressImplCopyWith<_$NonceAndContractAddressImpl> get copyWith => throw _privateConstructorUsedError; } @@ -734,22 +736,22 @@ class _$DeclaredClassCopyWithImpl<$Res, $Val extends DeclaredClass> } /// @nodoc -abstract class _$$_DeclaredClassCopyWith<$Res> +abstract class _$$DeclaredClassImplCopyWith<$Res> implements $DeclaredClassCopyWith<$Res> { - factory _$$_DeclaredClassCopyWith( - _$_DeclaredClass value, $Res Function(_$_DeclaredClass) then) = - __$$_DeclaredClassCopyWithImpl<$Res>; + factory _$$DeclaredClassImplCopyWith( + _$DeclaredClassImpl value, $Res Function(_$DeclaredClassImpl) then) = + __$$DeclaredClassImplCopyWithImpl<$Res>; @override @useResult $Res call({Felt classHash, Felt compiledClassHash}); } /// @nodoc -class __$$_DeclaredClassCopyWithImpl<$Res> - extends _$DeclaredClassCopyWithImpl<$Res, _$_DeclaredClass> - implements _$$_DeclaredClassCopyWith<$Res> { - __$$_DeclaredClassCopyWithImpl( - _$_DeclaredClass _value, $Res Function(_$_DeclaredClass) _then) +class __$$DeclaredClassImplCopyWithImpl<$Res> + extends _$DeclaredClassCopyWithImpl<$Res, _$DeclaredClassImpl> + implements _$$DeclaredClassImplCopyWith<$Res> { + __$$DeclaredClassImplCopyWithImpl( + _$DeclaredClassImpl _value, $Res Function(_$DeclaredClassImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -758,7 +760,7 @@ class __$$_DeclaredClassCopyWithImpl<$Res> Object? classHash = null, Object? compiledClassHash = null, }) { - return _then(_$_DeclaredClass( + return _then(_$DeclaredClassImpl( classHash: null == classHash ? _value.classHash : classHash // ignore: cast_nullable_to_non_nullable @@ -773,12 +775,12 @@ class __$$_DeclaredClassCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_DeclaredClass implements _DeclaredClass { - const _$_DeclaredClass( +class _$DeclaredClassImpl implements _DeclaredClass { + const _$DeclaredClassImpl( {required this.classHash, required this.compiledClassHash}); - factory _$_DeclaredClass.fromJson(Map json) => - _$$_DeclaredClassFromJson(json); + factory _$DeclaredClassImpl.fromJson(Map json) => + _$$DeclaredClassImplFromJson(json); @override final Felt classHash; @@ -791,10 +793,10 @@ class _$_DeclaredClass implements _DeclaredClass { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_DeclaredClass && + other is _$DeclaredClassImpl && (identical(other.classHash, classHash) || other.classHash == classHash) && (identical(other.compiledClassHash, compiledClassHash) || @@ -808,12 +810,12 @@ class _$_DeclaredClass implements _DeclaredClass { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_DeclaredClassCopyWith<_$_DeclaredClass> get copyWith => - __$$_DeclaredClassCopyWithImpl<_$_DeclaredClass>(this, _$identity); + _$$DeclaredClassImplCopyWith<_$DeclaredClassImpl> get copyWith => + __$$DeclaredClassImplCopyWithImpl<_$DeclaredClassImpl>(this, _$identity); @override Map toJson() { - return _$$_DeclaredClassToJson( + return _$$DeclaredClassImplToJson( this, ); } @@ -822,10 +824,10 @@ class _$_DeclaredClass implements _DeclaredClass { abstract class _DeclaredClass implements DeclaredClass { const factory _DeclaredClass( {required final Felt classHash, - required final Felt compiledClassHash}) = _$_DeclaredClass; + required final Felt compiledClassHash}) = _$DeclaredClassImpl; factory _DeclaredClass.fromJson(Map json) = - _$_DeclaredClass.fromJson; + _$DeclaredClassImpl.fromJson; @override Felt get classHash; @@ -833,7 +835,7 @@ abstract class _DeclaredClass implements DeclaredClass { Felt get compiledClassHash; @override @JsonKey(ignore: true) - _$$_DeclaredClassCopyWith<_$_DeclaredClass> get copyWith => + _$$DeclaredClassImplCopyWith<_$DeclaredClassImpl> get copyWith => throw _privateConstructorUsedError; } @@ -891,22 +893,22 @@ class _$ReplacedClassCopyWithImpl<$Res, $Val extends ReplacedClass> } /// @nodoc -abstract class _$$_ReplacedClassCopyWith<$Res> +abstract class _$$ReplacedClassImplCopyWith<$Res> implements $ReplacedClassCopyWith<$Res> { - factory _$$_ReplacedClassCopyWith( - _$_ReplacedClass value, $Res Function(_$_ReplacedClass) then) = - __$$_ReplacedClassCopyWithImpl<$Res>; + factory _$$ReplacedClassImplCopyWith( + _$ReplacedClassImpl value, $Res Function(_$ReplacedClassImpl) then) = + __$$ReplacedClassImplCopyWithImpl<$Res>; @override @useResult $Res call({Felt contractAddress, Felt classHash}); } /// @nodoc -class __$$_ReplacedClassCopyWithImpl<$Res> - extends _$ReplacedClassCopyWithImpl<$Res, _$_ReplacedClass> - implements _$$_ReplacedClassCopyWith<$Res> { - __$$_ReplacedClassCopyWithImpl( - _$_ReplacedClass _value, $Res Function(_$_ReplacedClass) _then) +class __$$ReplacedClassImplCopyWithImpl<$Res> + extends _$ReplacedClassCopyWithImpl<$Res, _$ReplacedClassImpl> + implements _$$ReplacedClassImplCopyWith<$Res> { + __$$ReplacedClassImplCopyWithImpl( + _$ReplacedClassImpl _value, $Res Function(_$ReplacedClassImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -915,7 +917,7 @@ class __$$_ReplacedClassCopyWithImpl<$Res> Object? contractAddress = null, Object? classHash = null, }) { - return _then(_$_ReplacedClass( + return _then(_$ReplacedClassImpl( contractAddress: null == contractAddress ? _value.contractAddress : contractAddress // ignore: cast_nullable_to_non_nullable @@ -930,12 +932,12 @@ class __$$_ReplacedClassCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_ReplacedClass implements _ReplacedClass { - const _$_ReplacedClass( +class _$ReplacedClassImpl implements _ReplacedClass { + const _$ReplacedClassImpl( {required this.contractAddress, required this.classHash}); - factory _$_ReplacedClass.fromJson(Map json) => - _$$_ReplacedClassFromJson(json); + factory _$ReplacedClassImpl.fromJson(Map json) => + _$$ReplacedClassImplFromJson(json); @override final Felt contractAddress; @@ -948,10 +950,10 @@ class _$_ReplacedClass implements _ReplacedClass { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_ReplacedClass && + other is _$ReplacedClassImpl && (identical(other.contractAddress, contractAddress) || other.contractAddress == contractAddress) && (identical(other.classHash, classHash) || @@ -965,12 +967,12 @@ class _$_ReplacedClass implements _ReplacedClass { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_ReplacedClassCopyWith<_$_ReplacedClass> get copyWith => - __$$_ReplacedClassCopyWithImpl<_$_ReplacedClass>(this, _$identity); + _$$ReplacedClassImplCopyWith<_$ReplacedClassImpl> get copyWith => + __$$ReplacedClassImplCopyWithImpl<_$ReplacedClassImpl>(this, _$identity); @override Map toJson() { - return _$$_ReplacedClassToJson( + return _$$ReplacedClassImplToJson( this, ); } @@ -979,10 +981,10 @@ class _$_ReplacedClass implements _ReplacedClass { abstract class _ReplacedClass implements ReplacedClass { const factory _ReplacedClass( {required final Felt contractAddress, - required final Felt classHash}) = _$_ReplacedClass; + required final Felt classHash}) = _$ReplacedClassImpl; factory _ReplacedClass.fromJson(Map json) = - _$_ReplacedClass.fromJson; + _$ReplacedClassImpl.fromJson; @override Felt get contractAddress; @@ -990,6 +992,6 @@ abstract class _ReplacedClass implements ReplacedClass { Felt get classHash; @override @JsonKey(ignore: true) - _$$_ReplacedClassCopyWith<_$_ReplacedClass> get copyWith => + _$$ReplacedClassImplCopyWith<_$ReplacedClassImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/state_update.g.dart b/packages/starknet_provider/lib/src/model/state_update.g.dart index 9fc54755..1857fc92 100644 --- a/packages/starknet_provider/lib/src/model/state_update.g.dart +++ b/packages/starknet_provider/lib/src/model/state_update.g.dart @@ -6,15 +6,15 @@ part of 'state_update.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_StateUpdate _$$_StateUpdateFromJson(Map json) => - _$_StateUpdate( +_$StateUpdateImpl _$$StateUpdateImplFromJson(Map json) => + _$StateUpdateImpl( blockHash: Felt.fromJson(json['block_hash'] as String), newRoot: Felt.fromJson(json['new_root'] as String), oldRoot: Felt.fromJson(json['old_root'] as String), stateDiff: StateDiff.fromJson(json['state_diff'] as Map), ); -Map _$$_StateUpdateToJson(_$_StateUpdate instance) => +Map _$$StateUpdateImplToJson(_$StateUpdateImpl instance) => { 'block_hash': instance.blockHash.toJson(), 'new_root': instance.newRoot.toJson(), @@ -22,7 +22,8 @@ Map _$$_StateUpdateToJson(_$_StateUpdate instance) => 'state_diff': instance.stateDiff.toJson(), }; -_$_StateDiff _$$_StateDiffFromJson(Map json) => _$_StateDiff( +_$StateDiffImpl _$$StateDiffImplFromJson(Map json) => + _$StateDiffImpl( storageDiffs: (json['storage_diffs'] as List) .map((e) => ContractStorageDiffItem.fromJson(e as Map)) @@ -46,7 +47,7 @@ _$_StateDiff _$$_StateDiffFromJson(Map json) => _$_StateDiff( .toList(), ); -Map _$$_StateDiffToJson(_$_StateDiff instance) => +Map _$$StateDiffImplToJson(_$StateDiffImpl instance) => { 'storage_diffs': instance.storageDiffs.map((e) => e.toJson()).toList(), 'deprecated_declared_classes': @@ -60,39 +61,39 @@ Map _$$_StateDiffToJson(_$_StateDiff instance) => 'nonces': instance.nonces.map((e) => e.toJson()).toList(), }; -_$_NonceAndContractAddress _$$_NonceAndContractAddressFromJson( +_$NonceAndContractAddressImpl _$$NonceAndContractAddressImplFromJson( Map json) => - _$_NonceAndContractAddress( + _$NonceAndContractAddressImpl( nonce: Felt.fromJson(json['nonce'] as String), contractAddress: Felt.fromJson(json['contract_address'] as String), ); -Map _$$_NonceAndContractAddressToJson( - _$_NonceAndContractAddress instance) => +Map _$$NonceAndContractAddressImplToJson( + _$NonceAndContractAddressImpl instance) => { 'nonce': instance.nonce.toJson(), 'contract_address': instance.contractAddress.toJson(), }; -_$_DeclaredClass _$$_DeclaredClassFromJson(Map json) => - _$_DeclaredClass( +_$DeclaredClassImpl _$$DeclaredClassImplFromJson(Map json) => + _$DeclaredClassImpl( classHash: Felt.fromJson(json['class_hash'] as String), compiledClassHash: Felt.fromJson(json['compiled_class_hash'] as String), ); -Map _$$_DeclaredClassToJson(_$_DeclaredClass instance) => +Map _$$DeclaredClassImplToJson(_$DeclaredClassImpl instance) => { 'class_hash': instance.classHash.toJson(), 'compiled_class_hash': instance.compiledClassHash.toJson(), }; -_$_ReplacedClass _$$_ReplacedClassFromJson(Map json) => - _$_ReplacedClass( +_$ReplacedClassImpl _$$ReplacedClassImplFromJson(Map json) => + _$ReplacedClassImpl( contractAddress: Felt.fromJson(json['contract_address'] as String), classHash: Felt.fromJson(json['class_hash'] as String), ); -Map _$$_ReplacedClassToJson(_$_ReplacedClass instance) => +Map _$$ReplacedClassImplToJson(_$ReplacedClassImpl instance) => { 'contract_address': instance.contractAddress.toJson(), 'class_hash': instance.classHash.toJson(), diff --git a/packages/starknet_provider/lib/src/model/sync_status.freezed.dart b/packages/starknet_provider/lib/src/model/sync_status.freezed.dart index 27113c48..a1d2491d 100644 --- a/packages/starknet_provider/lib/src/model/sync_status.freezed.dart +++ b/packages/starknet_provider/lib/src/model/sync_status.freezed.dart @@ -12,7 +12,7 @@ part of 'sync_status.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); SyncStatus _$SyncStatusFromJson(Map json) { return _SyncStatus.fromJson(json); @@ -98,11 +98,11 @@ class _$SyncStatusCopyWithImpl<$Res, $Val extends SyncStatus> } /// @nodoc -abstract class _$$_SyncStatusCopyWith<$Res> +abstract class _$$SyncStatusImplCopyWith<$Res> implements $SyncStatusCopyWith<$Res> { - factory _$$_SyncStatusCopyWith( - _$_SyncStatus value, $Res Function(_$_SyncStatus) then) = - __$$_SyncStatusCopyWithImpl<$Res>; + factory _$$SyncStatusImplCopyWith( + _$SyncStatusImpl value, $Res Function(_$SyncStatusImpl) then) = + __$$SyncStatusImplCopyWithImpl<$Res>; @override @useResult $Res call( @@ -115,11 +115,11 @@ abstract class _$$_SyncStatusCopyWith<$Res> } /// @nodoc -class __$$_SyncStatusCopyWithImpl<$Res> - extends _$SyncStatusCopyWithImpl<$Res, _$_SyncStatus> - implements _$$_SyncStatusCopyWith<$Res> { - __$$_SyncStatusCopyWithImpl( - _$_SyncStatus _value, $Res Function(_$_SyncStatus) _then) +class __$$SyncStatusImplCopyWithImpl<$Res> + extends _$SyncStatusCopyWithImpl<$Res, _$SyncStatusImpl> + implements _$$SyncStatusImplCopyWith<$Res> { + __$$SyncStatusImplCopyWithImpl( + _$SyncStatusImpl _value, $Res Function(_$SyncStatusImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -132,7 +132,7 @@ class __$$_SyncStatusCopyWithImpl<$Res> Object? highestBlockHash = null, Object? highestBlockNum = null, }) { - return _then(_$_SyncStatus( + return _then(_$SyncStatusImpl( startingBlockHash: null == startingBlockHash ? _value.startingBlockHash : startingBlockHash // ignore: cast_nullable_to_non_nullable @@ -163,8 +163,8 @@ class __$$_SyncStatusCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$_SyncStatus implements _SyncStatus { - const _$_SyncStatus( +class _$SyncStatusImpl implements _SyncStatus { + const _$SyncStatusImpl( {required this.startingBlockHash, required this.startingBlockNum, required this.currentBlockHash, @@ -172,8 +172,8 @@ class _$_SyncStatus implements _SyncStatus { required this.highestBlockHash, required this.highestBlockNum}); - factory _$_SyncStatus.fromJson(Map json) => - _$$_SyncStatusFromJson(json); + factory _$SyncStatusImpl.fromJson(Map json) => + _$$SyncStatusImplFromJson(json); @override final Felt startingBlockHash; @@ -194,10 +194,10 @@ class _$_SyncStatus implements _SyncStatus { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$_SyncStatus && + other is _$SyncStatusImpl && (identical(other.startingBlockHash, startingBlockHash) || other.startingBlockHash == startingBlockHash) && (identical(other.startingBlockNum, startingBlockNum) || @@ -226,12 +226,12 @@ class _$_SyncStatus implements _SyncStatus { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$_SyncStatusCopyWith<_$_SyncStatus> get copyWith => - __$$_SyncStatusCopyWithImpl<_$_SyncStatus>(this, _$identity); + _$$SyncStatusImplCopyWith<_$SyncStatusImpl> get copyWith => + __$$SyncStatusImplCopyWithImpl<_$SyncStatusImpl>(this, _$identity); @override Map toJson() { - return _$$_SyncStatusToJson( + return _$$SyncStatusImplToJson( this, ); } @@ -244,10 +244,10 @@ abstract class _SyncStatus implements SyncStatus { required final Felt currentBlockHash, required final String currentBlockNum, required final Felt highestBlockHash, - required final String highestBlockNum}) = _$_SyncStatus; + required final String highestBlockNum}) = _$SyncStatusImpl; factory _SyncStatus.fromJson(Map json) = - _$_SyncStatus.fromJson; + _$SyncStatusImpl.fromJson; @override Felt get startingBlockHash; @@ -263,6 +263,6 @@ abstract class _SyncStatus implements SyncStatus { String get highestBlockNum; @override @JsonKey(ignore: true) - _$$_SyncStatusCopyWith<_$_SyncStatus> get copyWith => + _$$SyncStatusImplCopyWith<_$SyncStatusImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/sync_status.g.dart b/packages/starknet_provider/lib/src/model/sync_status.g.dart index 7641ae07..7bb94b91 100644 --- a/packages/starknet_provider/lib/src/model/sync_status.g.dart +++ b/packages/starknet_provider/lib/src/model/sync_status.g.dart @@ -6,8 +6,8 @@ part of 'sync_status.dart'; // JsonSerializableGenerator // ************************************************************************** -_$_SyncStatus _$$_SyncStatusFromJson(Map json) => - _$_SyncStatus( +_$SyncStatusImpl _$$SyncStatusImplFromJson(Map json) => + _$SyncStatusImpl( startingBlockHash: Felt.fromJson(json['starting_block_hash'] as String), startingBlockNum: json['starting_block_num'] as String, currentBlockHash: Felt.fromJson(json['current_block_hash'] as String), @@ -16,7 +16,7 @@ _$_SyncStatus _$$_SyncStatusFromJson(Map json) => highestBlockNum: json['highest_block_num'] as String, ); -Map _$$_SyncStatusToJson(_$_SyncStatus instance) => +Map _$$SyncStatusImplToJson(_$SyncStatusImpl instance) => { 'starting_block_hash': instance.startingBlockHash.toJson(), 'starting_block_num': instance.startingBlockNum, diff --git a/packages/starknet_provider/lib/src/model/syncing.freezed.dart b/packages/starknet_provider/lib/src/model/syncing.freezed.dart index bdd1b093..a036866e 100644 --- a/packages/starknet_provider/lib/src/model/syncing.freezed.dart +++ b/packages/starknet_provider/lib/src/model/syncing.freezed.dart @@ -12,7 +12,7 @@ part of 'syncing.dart'; T _$identity(T value) => value; final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); + 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models'); Syncing _$SyncingFromJson(Map json) { switch (json['starkNetRuntimeTypeToRemove']) { @@ -99,10 +99,10 @@ class _$SyncingCopyWithImpl<$Res, $Val extends Syncing> } /// @nodoc -abstract class _$$SynchronizedCopyWith<$Res> { - factory _$$SynchronizedCopyWith( - _$Synchronized value, $Res Function(_$Synchronized) then) = - __$$SynchronizedCopyWithImpl<$Res>; +abstract class _$$SynchronizedImplCopyWith<$Res> { + factory _$$SynchronizedImplCopyWith( + _$SynchronizedImpl value, $Res Function(_$SynchronizedImpl) then) = + __$$SynchronizedImplCopyWithImpl<$Res>; @useResult $Res call({SyncStatus result}); @@ -110,11 +110,11 @@ abstract class _$$SynchronizedCopyWith<$Res> { } /// @nodoc -class __$$SynchronizedCopyWithImpl<$Res> - extends _$SyncingCopyWithImpl<$Res, _$Synchronized> - implements _$$SynchronizedCopyWith<$Res> { - __$$SynchronizedCopyWithImpl( - _$Synchronized _value, $Res Function(_$Synchronized) _then) +class __$$SynchronizedImplCopyWithImpl<$Res> + extends _$SyncingCopyWithImpl<$Res, _$SynchronizedImpl> + implements _$$SynchronizedImplCopyWith<$Res> { + __$$SynchronizedImplCopyWithImpl( + _$SynchronizedImpl _value, $Res Function(_$SynchronizedImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -122,7 +122,7 @@ class __$$SynchronizedCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$Synchronized( + return _then(_$SynchronizedImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -141,12 +141,12 @@ class __$$SynchronizedCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$Synchronized implements Synchronized { - const _$Synchronized({required this.result, final String? $type}) +class _$SynchronizedImpl implements Synchronized { + const _$SynchronizedImpl({required this.result, final String? $type}) : $type = $type ?? 'synchronized'; - factory _$Synchronized.fromJson(Map json) => - _$$SynchronizedFromJson(json); + factory _$SynchronizedImpl.fromJson(Map json) => + _$$SynchronizedImplFromJson(json); @override final SyncStatus result; @@ -160,10 +160,10 @@ class _$Synchronized implements Synchronized { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$Synchronized && + other is _$SynchronizedImpl && (identical(other.result, result) || other.result == result)); } @@ -174,8 +174,8 @@ class _$Synchronized implements Synchronized { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$SynchronizedCopyWith<_$Synchronized> get copyWith => - __$$SynchronizedCopyWithImpl<_$Synchronized>(this, _$identity); + _$$SynchronizedImplCopyWith<_$SynchronizedImpl> get copyWith => + __$$SynchronizedImplCopyWithImpl<_$SynchronizedImpl>(this, _$identity); @override @optionalTypeArgs @@ -247,7 +247,7 @@ class _$Synchronized implements Synchronized { @override Map toJson() { - return _$$SynchronizedToJson( + return _$$SynchronizedImplToJson( this, ); } @@ -255,32 +255,32 @@ class _$Synchronized implements Synchronized { abstract class Synchronized implements Syncing { const factory Synchronized({required final SyncStatus result}) = - _$Synchronized; + _$SynchronizedImpl; factory Synchronized.fromJson(Map json) = - _$Synchronized.fromJson; + _$SynchronizedImpl.fromJson; SyncStatus get result; @JsonKey(ignore: true) - _$$SynchronizedCopyWith<_$Synchronized> get copyWith => + _$$SynchronizedImplCopyWith<_$SynchronizedImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$NotSynchronizedCopyWith<$Res> { - factory _$$NotSynchronizedCopyWith( - _$NotSynchronized value, $Res Function(_$NotSynchronized) then) = - __$$NotSynchronizedCopyWithImpl<$Res>; +abstract class _$$NotSynchronizedImplCopyWith<$Res> { + factory _$$NotSynchronizedImplCopyWith(_$NotSynchronizedImpl value, + $Res Function(_$NotSynchronizedImpl) then) = + __$$NotSynchronizedImplCopyWithImpl<$Res>; @useResult $Res call({bool result}); } /// @nodoc -class __$$NotSynchronizedCopyWithImpl<$Res> - extends _$SyncingCopyWithImpl<$Res, _$NotSynchronized> - implements _$$NotSynchronizedCopyWith<$Res> { - __$$NotSynchronizedCopyWithImpl( - _$NotSynchronized _value, $Res Function(_$NotSynchronized) _then) +class __$$NotSynchronizedImplCopyWithImpl<$Res> + extends _$SyncingCopyWithImpl<$Res, _$NotSynchronizedImpl> + implements _$$NotSynchronizedImplCopyWith<$Res> { + __$$NotSynchronizedImplCopyWithImpl( + _$NotSynchronizedImpl _value, $Res Function(_$NotSynchronizedImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -288,7 +288,7 @@ class __$$NotSynchronizedCopyWithImpl<$Res> $Res call({ Object? result = null, }) { - return _then(_$NotSynchronized( + return _then(_$NotSynchronizedImpl( result: null == result ? _value.result : result // ignore: cast_nullable_to_non_nullable @@ -299,12 +299,12 @@ class __$$NotSynchronizedCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$NotSynchronized implements NotSynchronized { - const _$NotSynchronized({required this.result, final String? $type}) +class _$NotSynchronizedImpl implements NotSynchronized { + const _$NotSynchronizedImpl({required this.result, final String? $type}) : $type = $type ?? 'notSynchronized'; - factory _$NotSynchronized.fromJson(Map json) => - _$$NotSynchronizedFromJson(json); + factory _$NotSynchronizedImpl.fromJson(Map json) => + _$$NotSynchronizedImplFromJson(json); @override final bool result; @@ -318,10 +318,10 @@ class _$NotSynchronized implements NotSynchronized { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$NotSynchronized && + other is _$NotSynchronizedImpl && (identical(other.result, result) || other.result == result)); } @@ -332,8 +332,9 @@ class _$NotSynchronized implements NotSynchronized { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$NotSynchronizedCopyWith<_$NotSynchronized> get copyWith => - __$$NotSynchronizedCopyWithImpl<_$NotSynchronized>(this, _$identity); + _$$NotSynchronizedImplCopyWith<_$NotSynchronizedImpl> get copyWith => + __$$NotSynchronizedImplCopyWithImpl<_$NotSynchronizedImpl>( + this, _$identity); @override @optionalTypeArgs @@ -405,7 +406,7 @@ class _$NotSynchronized implements NotSynchronized { @override Map toJson() { - return _$$NotSynchronizedToJson( + return _$$NotSynchronizedImplToJson( this, ); } @@ -413,22 +414,22 @@ class _$NotSynchronized implements NotSynchronized { abstract class NotSynchronized implements Syncing { const factory NotSynchronized({required final bool result}) = - _$NotSynchronized; + _$NotSynchronizedImpl; factory NotSynchronized.fromJson(Map json) = - _$NotSynchronized.fromJson; + _$NotSynchronizedImpl.fromJson; bool get result; @JsonKey(ignore: true) - _$$NotSynchronizedCopyWith<_$NotSynchronized> get copyWith => + _$$NotSynchronizedImplCopyWith<_$NotSynchronizedImpl> get copyWith => throw _privateConstructorUsedError; } /// @nodoc -abstract class _$$SyncingErrorCopyWith<$Res> { - factory _$$SyncingErrorCopyWith( - _$SyncingError value, $Res Function(_$SyncingError) then) = - __$$SyncingErrorCopyWithImpl<$Res>; +abstract class _$$SyncingErrorImplCopyWith<$Res> { + factory _$$SyncingErrorImplCopyWith( + _$SyncingErrorImpl value, $Res Function(_$SyncingErrorImpl) then) = + __$$SyncingErrorImplCopyWithImpl<$Res>; @useResult $Res call({JsonRpcApiError error}); @@ -436,11 +437,11 @@ abstract class _$$SyncingErrorCopyWith<$Res> { } /// @nodoc -class __$$SyncingErrorCopyWithImpl<$Res> - extends _$SyncingCopyWithImpl<$Res, _$SyncingError> - implements _$$SyncingErrorCopyWith<$Res> { - __$$SyncingErrorCopyWithImpl( - _$SyncingError _value, $Res Function(_$SyncingError) _then) +class __$$SyncingErrorImplCopyWithImpl<$Res> + extends _$SyncingCopyWithImpl<$Res, _$SyncingErrorImpl> + implements _$$SyncingErrorImplCopyWith<$Res> { + __$$SyncingErrorImplCopyWithImpl( + _$SyncingErrorImpl _value, $Res Function(_$SyncingErrorImpl) _then) : super(_value, _then); @pragma('vm:prefer-inline') @@ -448,7 +449,7 @@ class __$$SyncingErrorCopyWithImpl<$Res> $Res call({ Object? error = null, }) { - return _then(_$SyncingError( + return _then(_$SyncingErrorImpl( error: null == error ? _value.error : error // ignore: cast_nullable_to_non_nullable @@ -467,12 +468,12 @@ class __$$SyncingErrorCopyWithImpl<$Res> /// @nodoc @JsonSerializable() -class _$SyncingError implements SyncingError { - const _$SyncingError({required this.error, final String? $type}) +class _$SyncingErrorImpl implements SyncingError { + const _$SyncingErrorImpl({required this.error, final String? $type}) : $type = $type ?? 'error'; - factory _$SyncingError.fromJson(Map json) => - _$$SyncingErrorFromJson(json); + factory _$SyncingErrorImpl.fromJson(Map json) => + _$$SyncingErrorImplFromJson(json); @override final JsonRpcApiError error; @@ -486,10 +487,10 @@ class _$SyncingError implements SyncingError { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && - other is _$SyncingError && + other is _$SyncingErrorImpl && (identical(other.error, error) || other.error == error)); } @@ -500,8 +501,8 @@ class _$SyncingError implements SyncingError { @JsonKey(ignore: true) @override @pragma('vm:prefer-inline') - _$$SyncingErrorCopyWith<_$SyncingError> get copyWith => - __$$SyncingErrorCopyWithImpl<_$SyncingError>(this, _$identity); + _$$SyncingErrorImplCopyWith<_$SyncingErrorImpl> get copyWith => + __$$SyncingErrorImplCopyWithImpl<_$SyncingErrorImpl>(this, _$identity); @override @optionalTypeArgs @@ -573,7 +574,7 @@ class _$SyncingError implements SyncingError { @override Map toJson() { - return _$$SyncingErrorToJson( + return _$$SyncingErrorImplToJson( this, ); } @@ -581,13 +582,13 @@ class _$SyncingError implements SyncingError { abstract class SyncingError implements Syncing { const factory SyncingError({required final JsonRpcApiError error}) = - _$SyncingError; + _$SyncingErrorImpl; factory SyncingError.fromJson(Map json) = - _$SyncingError.fromJson; + _$SyncingErrorImpl.fromJson; JsonRpcApiError get error; @JsonKey(ignore: true) - _$$SyncingErrorCopyWith<_$SyncingError> get copyWith => + _$$SyncingErrorImplCopyWith<_$SyncingErrorImpl> get copyWith => throw _privateConstructorUsedError; } diff --git a/packages/starknet_provider/lib/src/model/syncing.g.dart b/packages/starknet_provider/lib/src/model/syncing.g.dart index 5771bdff..7f96294d 100644 --- a/packages/starknet_provider/lib/src/model/syncing.g.dart +++ b/packages/starknet_provider/lib/src/model/syncing.g.dart @@ -6,37 +6,39 @@ part of 'syncing.dart'; // JsonSerializableGenerator // ************************************************************************** -_$Synchronized _$$SynchronizedFromJson(Map json) => - _$Synchronized( +_$SynchronizedImpl _$$SynchronizedImplFromJson(Map json) => + _$SynchronizedImpl( result: SyncStatus.fromJson(json['result'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$SynchronizedToJson(_$Synchronized instance) => +Map _$$SynchronizedImplToJson(_$SynchronizedImpl instance) => { 'result': instance.result.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$NotSynchronized _$$NotSynchronizedFromJson(Map json) => - _$NotSynchronized( +_$NotSynchronizedImpl _$$NotSynchronizedImplFromJson( + Map json) => + _$NotSynchronizedImpl( result: json['result'] as bool, $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$NotSynchronizedToJson(_$NotSynchronized instance) => +Map _$$NotSynchronizedImplToJson( + _$NotSynchronizedImpl instance) => { 'result': instance.result, 'starkNetRuntimeTypeToRemove': instance.$type, }; -_$SyncingError _$$SyncingErrorFromJson(Map json) => - _$SyncingError( +_$SyncingErrorImpl _$$SyncingErrorImplFromJson(Map json) => + _$SyncingErrorImpl( error: JsonRpcApiError.fromJson(json['error'] as Map), $type: json['starkNetRuntimeTypeToRemove'] as String?, ); -Map _$$SyncingErrorToJson(_$SyncingError instance) => +Map _$$SyncingErrorImplToJson(_$SyncingErrorImpl instance) => { 'error': instance.error.toJson(), 'starkNetRuntimeTypeToRemove': instance.$type, diff --git a/packages/starknet_provider/melos_starknet_provider.iml b/packages/starknet_provider/melos_starknet_provider.iml new file mode 100644 index 00000000..389d07a1 --- /dev/null +++ b/packages/starknet_provider/melos_starknet_provider.iml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/packages/starknet_provider/test/melos_test.dart b/packages/starknet_provider/test/melos_test.dart new file mode 100644 index 00000000..aa51d018 --- /dev/null +++ b/packages/starknet_provider/test/melos_test.dart @@ -0,0 +1,6 @@ +import 'package:test/test.dart'; + +void main() { + test('Prevent melos from failing when no test tagged unit', () {}, + tags: ['unit', 'integration']); +} diff --git a/packages/starknet_provider/test/provider_test.dart b/packages/starknet_provider/test/provider_test.dart index 4bce95a4..6c6481c0 100644 --- a/packages/starknet_provider/test/provider_test.dart +++ b/packages/starknet_provider/test/provider_test.dart @@ -73,7 +73,7 @@ void main() { fail("Should fail transaction V0 are no more supported")); }, tags: ['integration-testnet']); test('declareTransaction', () async { - final account = getJsonRpcProvider(network: 'integration-devnet-040'); + final account = getJsonRpcProvider(network: 'integration'); final request = DeclareTransactionRequest( declareTransaction: DeclareTransactionV1( max_fee: defaultMaxFee, @@ -101,6 +101,6 @@ void main() { expect(result, equals(1)); }, ); - }, tags: ['integration-devnet-040']); - }); + }, tags: ['integration']); + }, skip: true); } diff --git a/packages/starknet_provider/test/read_provider_test.dart b/packages/starknet_provider/test/read_provider_test.dart index dd07d63d..7d0cde19 100644 --- a/packages/starknet_provider/test/read_provider_test.dart +++ b/packages/starknet_provider/test/read_provider_test.dart @@ -663,7 +663,7 @@ void main() { expect(result.program, isNotNull); }, ); - }, tags: ['rpc-node-bug']); + }, tags: ['integration']); test( 'returns contract class definition for a known class hash (cairo 1.0)', @@ -681,7 +681,7 @@ void main() { expect(result.sierraProgram, isNotEmpty); }, ); - }, tags: ['rpc-node-bug']); + }, tags: ['integration']); test('returns BLOCK_NOT_FOUND error when invalid block id is given.', () async { @@ -781,7 +781,7 @@ void main() { expect(result.program, isNotNull); }, ); - }, tags: ['rpc-node-bug']); + }, tags: ['integration']); test( 'returns contract class definition in the given block for given contract address. (cairo 1.0)', @@ -799,7 +799,7 @@ void main() { expect(result.sierraProgram, isNotEmpty); }, ); - }, tags: ['rpc-node-bug']); + }, tags: ['integration']); test('returns BLOCK_NOT_FOUND error when invalid block id is given.', () async { @@ -1061,5 +1061,5 @@ void main() { ); }); }); - }, tags: ['integration-testnet']); + }, tags: ['integration-testnet'], skip: true); } diff --git a/packages/wallet_kit/android/local.properties b/packages/wallet_kit/android/local.properties index 4eb73482..4d59668e 100644 --- a/packages/wallet_kit/android/local.properties +++ b/packages/wallet_kit/android/local.properties @@ -1,2 +1,2 @@ -sdk.dir=/Users/paulreboullet/Library/Android/sdk -flutter.sdk=/usr/local/Caskroom/flutter/3.7.7/flutter \ No newline at end of file +sdk.dir=/Users/gabin/Library/Android/sdk +flutter.sdk=/Users/gabin/development/flutter \ No newline at end of file diff --git a/packages/wallet_kit/lib/wallet_state/wallet_provider.dart b/packages/wallet_kit/lib/wallet_state/wallet_provider.dart index df8fb492..10bd36c6 100644 --- a/packages/wallet_kit/lib/wallet_state/wallet_provider.dart +++ b/packages/wallet_kit/lib/wallet_state/wallet_provider.dart @@ -292,4 +292,4 @@ Future getStrkBalance( return strkBalance; }, ); -} \ No newline at end of file +} diff --git a/poetry.lock b/poetry.lock deleted file mode 100644 index 02000e60..00000000 --- a/poetry.lock +++ /dev/null @@ -1,2635 +0,0 @@ -# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. - -[[package]] -name = "aiohttp" -version = "3.8.5" -description = "Async http client/server framework (asyncio)" -optional = false -python-versions = ">=3.6" -files = [ - {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"}, - {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"}, - {file = "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"}, - {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"}, - {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"}, - {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"}, - {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"}, - {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"}, - {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"}, - {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"}, - {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"}, - {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"}, - {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"}, - {file = "aiohttp-3.8.5-cp310-cp310-win32.whl", hash = "sha256:33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"}, - {file = "aiohttp-3.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"}, - {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"}, - {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"}, - {file = "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"}, - {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"}, - {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"}, - {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"}, - {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"}, - {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"}, - {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"}, - {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"}, - {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"}, - {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"}, - {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"}, - {file = "aiohttp-3.8.5-cp311-cp311-win32.whl", hash = "sha256:2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"}, - {file = "aiohttp-3.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"}, - {file = "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"}, - {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"}, - {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"}, - {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"}, - {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"}, - {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"}, - {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"}, - {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"}, - {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"}, - {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"}, - {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"}, - {file = "aiohttp-3.8.5-cp36-cp36m-win32.whl", hash = "sha256:6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"}, - {file = "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl", hash = "sha256:b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"}, - {file = "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"}, - {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"}, - {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"}, - {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"}, - {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"}, - {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"}, - {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"}, - {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"}, - {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"}, - {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"}, - {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"}, - {file = "aiohttp-3.8.5-cp37-cp37m-win32.whl", hash = "sha256:68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"}, - {file = "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"}, - {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"}, - {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"}, - {file = "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"}, - {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"}, - {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"}, - {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"}, - {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"}, - {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"}, - {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"}, - {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"}, - {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"}, - {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"}, - {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"}, - {file = "aiohttp-3.8.5-cp38-cp38-win32.whl", hash = "sha256:ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"}, - {file = "aiohttp-3.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"}, - {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"}, - {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"}, - {file = "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"}, - {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"}, - {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"}, - {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"}, - {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"}, - {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"}, - {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"}, - {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"}, - {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"}, - {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"}, - {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"}, - {file = "aiohttp-3.8.5-cp39-cp39-win32.whl", hash = "sha256:00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"}, - {file = "aiohttp-3.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"}, - {file = "aiohttp-3.8.5.tar.gz", hash = "sha256:b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"}, -] - -[package.dependencies] -aiosignal = ">=1.1.2" -async-timeout = ">=4.0.0a3,<5.0" -attrs = ">=17.3.0" -charset-normalizer = ">=2.0,<4.0" -frozenlist = ">=1.1.1" -multidict = ">=4.5,<7.0" -yarl = ">=1.0,<2.0" - -[package.extras] -speedups = ["Brotli", "aiodns", "cchardet"] - -[[package]] -name = "aiosignal" -version = "1.3.1" -description = "aiosignal: a list of registered asynchronous callbacks" -optional = false -python-versions = ">=3.7" -files = [ - {file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"}, - {file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"}, -] - -[package.dependencies] -frozenlist = ">=1.1.0" - -[[package]] -name = "anyio" -version = "4.0.0" -description = "High level compatibility layer for multiple asynchronous event loop implementations" -optional = false -python-versions = ">=3.8" -files = [ - {file = "anyio-4.0.0-py3-none-any.whl", hash = "sha256:cfdb2b588b9fc25ede96d8db56ed50848b0b649dca3dd1df0b11f683bb9e0b5f"}, - {file = "anyio-4.0.0.tar.gz", hash = "sha256:f7ed51751b2c2add651e5747c891b47e26d2a21be5d32d9311dfe9692f3e5d7a"}, -] - -[package.dependencies] -exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} -idna = ">=2.8" -sniffio = ">=1.1" - -[package.extras] -doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] -trio = ["trio (>=0.22)"] - -[[package]] -name = "asgiref" -version = "3.7.2" -description = "ASGI specs, helper code, and adapters" -optional = false -python-versions = ">=3.7" -files = [ - {file = "asgiref-3.7.2-py3-none-any.whl", hash = "sha256:89b2ef2247e3b562a16eef663bc0e2e703ec6468e2fa8a5cd61cd449786d4f6e"}, - {file = "asgiref-3.7.2.tar.gz", hash = "sha256:9e0ce3aa93a819ba5b45120216b23878cf6e8525eb3848653452b4192b92afed"}, -] - -[package.dependencies] -typing-extensions = {version = ">=4", markers = "python_version < \"3.11\""} - -[package.extras] -tests = ["mypy (>=0.800)", "pytest", "pytest-asyncio"] - -[[package]] -name = "async-timeout" -version = "4.0.3" -description = "Timeout context manager for asyncio programs" -optional = false -python-versions = ">=3.7" -files = [ - {file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"}, - {file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"}, -] - -[[package]] -name = "asyncclick" -version = "8.1.3.4" -description = "Composable command line interface toolkit, async version" -optional = false -python-versions = ">=3.7" -files = [ - {file = "asyncclick-8.1.3.4-py3-none-any.whl", hash = "sha256:f8db604e37dabd43922d58f857817b1dfd8f88695b75c4cc1afe7ff1cc238a7b"}, - {file = "asyncclick-8.1.3.4.tar.gz", hash = "sha256:81d98cbf6c8813f9cd5599f586d56cfc532e9e6441391974d10827abb90fe833"}, -] - -[package.dependencies] -colorama = {version = "*", markers = "platform_system == \"Windows\""} - -[[package]] -name = "attrs" -version = "23.1.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.7" -files = [ - {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, - {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, -] - -[package.extras] -cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] -dev = ["attrs[docs,tests]", "pre-commit"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] -tests = ["attrs[tests-no-zope]", "zope-interface"] -tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] - -[[package]] -name = "autopep8" -version = "2.0.4" -description = "A tool that automatically formats Python code to conform to the PEP 8 style guide" -optional = false -python-versions = ">=3.6" -files = [ - {file = "autopep8-2.0.4-py2.py3-none-any.whl", hash = "sha256:067959ca4a07b24dbd5345efa8325f5f58da4298dab0dde0443d5ed765de80cb"}, - {file = "autopep8-2.0.4.tar.gz", hash = "sha256:2913064abd97b3419d1cc83ea71f042cb821f87e45b9c88cad5ad3c4ea87fe0c"}, -] - -[package.dependencies] -pycodestyle = ">=2.10.0" -tomli = {version = "*", markers = "python_version < \"3.11\""} - -[[package]] -name = "bitarray" -version = "2.8.1" -description = "efficient arrays of booleans -- C extension" -optional = false -python-versions = "*" -files = [ - {file = "bitarray-2.8.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6be965028785413a6163dd55a639b898b22f67f9b6ed554081c23e94a602031e"}, - {file = "bitarray-2.8.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29e19cb80a69f6d1a64097bfbe1766c418e1a785d901b583ef0328ea10a30399"}, - {file = "bitarray-2.8.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0f6d705860f59721d7282496a4d29b5fd78690e1c1473503832c983e762b01b"}, - {file = "bitarray-2.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6df04efdba4e1bf9d93a1735e42005f8fcf812caf40c03934d9322412d563499"}, - {file = "bitarray-2.8.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:18530ed3ddd71e9ff95440afce531efc3df7a3e0657f1c201c2c3cb41dd65869"}, - {file = "bitarray-2.8.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4cd81ffd2d58ef68c22c825aff89f4a47bd721e2ada0a3a96793169f370ae21"}, - {file = "bitarray-2.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8367768ab797105eb97dfbd4577fcde281618de4d8d3b16ad62c477bb065f347"}, - {file = "bitarray-2.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:848af80518d0ed2aee782018588c7c88805f51b01271935df5b256c8d81c726e"}, - {file = "bitarray-2.8.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:c54b0af16be45de534af9d77e8a180126cd059f72db8b6550f62dda233868942"}, - {file = "bitarray-2.8.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:f30cdce22af3dc7c73e70af391bfd87c4574cc40c74d651919e20efc26e014b5"}, - {file = "bitarray-2.8.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:bc03bb358ae3917247d257207c79162e666d407ac473718d1b95316dac94162b"}, - {file = "bitarray-2.8.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:cf38871ed4cd89df9db7c70f729b948fa3e2848a07c69f78e4ddfbe4f23db63c"}, - {file = "bitarray-2.8.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4a637bcd199c1366c65b98f18884f0d0b87403f04676b21e4635831660d722a7"}, - {file = "bitarray-2.8.1-cp310-cp310-win32.whl", hash = "sha256:904719fb7304d4115228b63c178f0cc725ad3b73e285c4b328e45a99a8e3fad6"}, - {file = "bitarray-2.8.1-cp310-cp310-win_amd64.whl", hash = "sha256:1e859c664500d57526fe07140889a3b58dca54ff3b16ac6dc6d534a65c933084"}, - {file = "bitarray-2.8.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2d3f28a80f2e6bb96e9360a4baf3fbacb696b5aba06a14c18a15488d4b6f398f"}, - {file = "bitarray-2.8.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4677477a406f2a9e064920463f69172b865e4d69117e1f2160064d3f5912b0bd"}, - {file = "bitarray-2.8.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9061c0a50216f24c97fb2325de84200e5ad5555f25c854ddcb3ceb6f12136055"}, - {file = "bitarray-2.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:843af12991161b358b6379a8dc5f6636798f3dacdae182d30995b6a2df3b263e"}, - {file = "bitarray-2.8.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9336300fd0acf07ede92e424930176dc4b43ef1b298489e93ba9a1695e8ea752"}, - {file = "bitarray-2.8.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0af01e1f61fe627f63648c0c6f52de8eac56710a2ef1dbce4851d867084cc7e"}, - {file = "bitarray-2.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ab81c74a1805fe74330859b38e70d7525cdd80953461b59c06660046afaffcf"}, - {file = "bitarray-2.8.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b2015a9dd718393e814ff7b9e80c58190eb1cef7980f86a97a33e8440e158ce2"}, - {file = "bitarray-2.8.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:5b0493ab66c6b8e17e9fde74c646b39ee09c236cf28a787cb8cbd3a83c05bff7"}, - {file = "bitarray-2.8.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:81e83ed7e0b1c09c5a33b97712da89e7a21fd3e5598eff3975c39540f5619792"}, - {file = "bitarray-2.8.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:741c3a2c0997c8f8878edfc65a4a8f7aa72eede337c9bc0b7bd8a45cf6e70dbc"}, - {file = "bitarray-2.8.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:57aeab27120a8a50917845bb81b0976e33d4759f2156b01359e2b43d445f5127"}, - {file = "bitarray-2.8.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:17c32ba584e8fb9322419390e0e248769ed7d59de3ffa7432562a4c0ec4f1f82"}, - {file = "bitarray-2.8.1-cp311-cp311-win32.whl", hash = "sha256:b67733a240a96f09b7597af97ac4d60c59140cfcfd180f11a7221863b82f023a"}, - {file = "bitarray-2.8.1-cp311-cp311-win_amd64.whl", hash = "sha256:7b29d4bf3d3da1847f2be9e30105bf51caaf5922e94dc827653e250ed33f4e8a"}, - {file = "bitarray-2.8.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:5f6175c1cf07dadad3213d60075704cf2e2f1232975cfd4ac8328c24a05e8f78"}, - {file = "bitarray-2.8.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cc066c7290151600b8872865708d2d00fb785c5db8a0df20d70d518e02f172b"}, - {file = "bitarray-2.8.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4ce2ef9291a193a0e0cd5e23970bf3b682cc8b95220561d05b775b8d616d665f"}, - {file = "bitarray-2.8.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5582dd7d906e6f9ec1704f99d56d812f7d395d28c02262bc8b50834d51250c3"}, - {file = "bitarray-2.8.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2aa2267eb6d2b88ef7d139e79a6daaa84cd54d241b9797478f10dcb95a9cd620"}, - {file = "bitarray-2.8.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a04d4851e83730f03c4a6aac568c7d8b42f78f0f9cc8231d6db66192b030ce1e"}, - {file = "bitarray-2.8.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:f7d2ec2174d503cbb092f8353527842633c530b4e03b9922411640ac9c018a19"}, - {file = "bitarray-2.8.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:b65a04b2e029b0694b52d60786732afd15b1ec6517de61a36afbb7808a2ffac1"}, - {file = "bitarray-2.8.1-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:55020d6fb9b72bd3606969f5431386c592ed3666133bd475af945aa0fa9e84ec"}, - {file = "bitarray-2.8.1-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:797de3465f5f6c6be9a412b4e99eb6e8cdb86b83b6756655c4d83a65d0b9a376"}, - {file = "bitarray-2.8.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:f9a66745682e175e143a180524a63e692acb2b8c86941073f6dd4ee906e69608"}, - {file = "bitarray-2.8.1-cp36-cp36m-win32.whl", hash = "sha256:443726af4bd60515e4e41ea36c5dbadb29a59bc799bcbf431011d1c6fd4363e3"}, - {file = "bitarray-2.8.1-cp36-cp36m-win_amd64.whl", hash = "sha256:2b0f754a5791635b8239abdcc0258378111b8ee7a8eb3e2bbc24bcc48a0f0b08"}, - {file = "bitarray-2.8.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:d175e16419a52d54c0ac44c93309ba76dc2cfd33ee9d20624f1a5eb86b8e162e"}, - {file = "bitarray-2.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3128234bde3629ab301a501950587e847d30031a9cbf04d95f35cbf44469a9e"}, - {file = "bitarray-2.8.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:75104c3076676708c1ac2484ebf5c26464fb3850312de33a5b5bf61bfa7dbec5"}, - {file = "bitarray-2.8.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:82bfb6ab9b1b5451a5483c9a2ae2a8f83799d7503b384b54f6ab56ea74abb305"}, - {file = "bitarray-2.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2dc064a63445366f6b26eaf77230d326b9463e903ba59d6ff5efde0c5ec1ea0e"}, - {file = "bitarray-2.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cbe54685cf6b17b3e15faf6c4b76773bc1c484bc447020737d2550a9dde5f6e6"}, - {file = "bitarray-2.8.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9fed8aba8d1b09cf641b50f1e6dd079c31677106ea4b63ec29f4c49adfabd63f"}, - {file = "bitarray-2.8.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:7c17dd8fb146c2c680bf1cb28b358f9e52a14076e44141c5442148863ee95d7d"}, - {file = "bitarray-2.8.1-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:c9efcee311d9ba0c619743060585af9a9b81496e97b945843d5e954c67722a75"}, - {file = "bitarray-2.8.1-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dc7acffee09822b334d1b46cd384e969804abdf18f892c82c05c2328066cd2ae"}, - {file = "bitarray-2.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ea71e0a50060f96ad0821e0ac785e91e44807f8b69555970979d81934961d5bd"}, - {file = "bitarray-2.8.1-cp37-cp37m-win32.whl", hash = "sha256:69ab51d551d50e4d6ca35abc95c9d04b33ad28418019bb5481ab09bdbc0df15c"}, - {file = "bitarray-2.8.1-cp37-cp37m-win_amd64.whl", hash = "sha256:3024ab4c4906c3681408ca17c35833237d18813ebb9f24ae9f9e3157a4a66939"}, - {file = "bitarray-2.8.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:46fdd27c8fa4186d8b290bf74a28cbd91b94127b1b6a35c265a002e394fa9324"}, - {file = "bitarray-2.8.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d32ccd2c0d906eae103ef84015f0545a395052b0b6eb0e02e9023ca0132557f6"}, - {file = "bitarray-2.8.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9186cf8135ca170cd907d8c4df408a87747570d192d89ec4ff23805611c702a0"}, - {file = "bitarray-2.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b8d6e5ff385fea25caf26fd58b43f087deb763dcaddd18d3df2895235cf1b484"}, - {file = "bitarray-2.8.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d6a9c72354327c7aa9890ff87904cbe86830cb1fb58c39750a0afac8df5e051"}, - {file = "bitarray-2.8.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d2f13b7d0694ce2024c82fc595e6ccc3918e7f069747c3de41b1ce72a9a1e346"}, - {file = "bitarray-2.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d38ceca90ed538706e3f111513073590f723f90659a7af0b992b29776a6e816"}, - {file = "bitarray-2.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2b977c39e3734e73540a2e3a71501c2c6261c70c6ce59d427bb7c4ecf6331c7e"}, - {file = "bitarray-2.8.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:214c05a7642040f6174e29f3e099549d3c40ac44616405081bf230dcafb38767"}, - {file = "bitarray-2.8.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ad440c17ef2ff42e94286186b5bcf82bf87c4026f91822675239102ebe1f7035"}, - {file = "bitarray-2.8.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:28dee92edd0d21655e56e1870c22468d0dabe557df18aa69f6d06b1543614180"}, - {file = "bitarray-2.8.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:df9d8a9a46c46950f306394705512553c552b633f8bf3c11359c4204289f11e3"}, - {file = "bitarray-2.8.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:1a0d27aad02d8abcb1d3b7d85f463877c4937e71adf9b6adb9367f2cdad91a52"}, - {file = "bitarray-2.8.1-cp38-cp38-win32.whl", hash = "sha256:6033303431a7c85a535b3f1b0ec28abc2ebc2167c263f244993b56ccb87cae6b"}, - {file = "bitarray-2.8.1-cp38-cp38-win_amd64.whl", hash = "sha256:9b65d487451e0e287565c8436cf4da45260f958f911299f6122a20d7ec76525c"}, - {file = "bitarray-2.8.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9aad7b4670f090734b272c072c9db375c63bd503512be9a9393e657dcacfc7e2"}, - {file = "bitarray-2.8.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bf80804014e3736515b84044c2be0e70080616b4ceddd4e38d85f3167aeb8165"}, - {file = "bitarray-2.8.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e7f7231ef349e8f4955d9b39561f4683a418a73443cfce797a4eddbee1ba9664"}, - {file = "bitarray-2.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67e8fb18df51e649adbc81359e1db0f202d72708fba61b06f5ac8db47c08d107"}, - {file = "bitarray-2.8.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d5df3d6358425c9dfb6bdbd4f576563ec4173d24693a9042d05aadcb23c0b98"}, - {file = "bitarray-2.8.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6ea51ba4204d086d5b76e84c31d2acbb355ed1b075ded54eb9b7070b0b95415d"}, - {file = "bitarray-2.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1414582b3b7516d2282433f0914dd9846389b051b2aea592ae7cc165806c24ac"}, - {file = "bitarray-2.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5934e3a623a1d485e1dcfc1990246e3c32c6fc6e7f0fd894750800d35fdb5794"}, - {file = "bitarray-2.8.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:aa08a9b03888c768b9b2383949a942804d50d8164683b39fe62f0bfbfd9b4204"}, - {file = "bitarray-2.8.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:00ff372dfaced7dd6cc2dffd052fafc118053cf81a442992b9a23367479d77d7"}, - {file = "bitarray-2.8.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:dd76bbf5a4b2ab84b8ffa229f5648e80038ba76bf8d7acc5de9dd06031b38117"}, - {file = "bitarray-2.8.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:e88a706f92ad1e0e1e66f6811d10b6155d5f18f0de9356ee899a7966a4e41992"}, - {file = "bitarray-2.8.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b2560475c5a1ff96fcab01fae7cf6b9a6da590f02659556b7fccc7991e401884"}, - {file = "bitarray-2.8.1-cp39-cp39-win32.whl", hash = "sha256:74cd1725d08325b6669e6e9a5d09cec29e7c41f7d58e082286af5387414d046d"}, - {file = "bitarray-2.8.1-cp39-cp39-win_amd64.whl", hash = "sha256:e48c45ea7944225bcee026c457a70eaea61db3659d9603f07fc8a643ab7e633b"}, - {file = "bitarray-2.8.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c2426dc7a0d92d8254def20ab7a231626397ce5b6fb3d4f44be74cc1370a60c3"}, - {file = "bitarray-2.8.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d34790a919f165b6f537935280ef5224957d9ce8ab11d339f5e6d0319a683ccc"}, - {file = "bitarray-2.8.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c26a923080bc211cab8f5a5e242e3657b32951fec8980db0616e9239aade482"}, - {file = "bitarray-2.8.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0de1bc5f971aba46de88a4eb0dbb5779e30bbd7514f4dcbff743c209e0c02667"}, - {file = "bitarray-2.8.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:3bb5f2954dd897b0bac13b5449e5c977534595b688120c8af054657a08b01f46"}, - {file = "bitarray-2.8.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:62ac31059a3c510ef64ed93d930581b262fd4592e6d95ede79fca91e8d3d3ef6"}, - {file = "bitarray-2.8.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ae32ac7217e83646b9f64d7090bf7b737afaa569665621f110a05d9738ca841a"}, - {file = "bitarray-2.8.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3994f7dc48d21af40c0d69fca57d8040b02953f4c7c3652c2341d8947e9cbedf"}, - {file = "bitarray-2.8.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c361201e1c3ee6d6b2266f8b7a645389880bccab1b29e22e7a6b7b6e7831ad5"}, - {file = "bitarray-2.8.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:861850d6a58e7b6a7096d0b0efed9c6d993a6ab8b9d01e781df1f4d80cc00efa"}, - {file = "bitarray-2.8.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ee772c20dcb56b03d666a4e4383d0b5b942b0ccc27815e42fe0737b34cba2082"}, - {file = "bitarray-2.8.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63fa75e87ad8c57d5722cc87902ca148ef8bbbba12b5c5b3c3730a1bc9ac2886"}, - {file = "bitarray-2.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b999fb66980f885961d197d97d7ff5a13b7ab524ccf45ccb4704f4b82ce02e3"}, - {file = "bitarray-2.8.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3243e4b8279ff2fe4c6e7869f0e6930c17799ee9f8d07317f68d44a66b46281e"}, - {file = "bitarray-2.8.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:542358b178b025dcc95e7fb83389e9954f701c41d312cbb66bdd763cbe5414b5"}, - {file = "bitarray-2.8.1.tar.gz", hash = "sha256:e68ceef35a88625d16169550768fcc8d3894913e363c24ecbf6b8c07eb02c8f3"}, -] - -[[package]] -name = "cachetools" -version = "5.3.1" -description = "Extensible memoizing collections and decorators" -optional = false -python-versions = ">=3.7" -files = [ - {file = "cachetools-5.3.1-py3-none-any.whl", hash = "sha256:95ef631eeaea14ba2e36f06437f36463aac3a096799e876ee55e5cdccb102590"}, - {file = "cachetools-5.3.1.tar.gz", hash = "sha256:dce83f2d9b4e1f732a8cd44af8e8fab2dbe46201467fc98b3ef8f269092bf62b"}, -] - -[[package]] -name = "cairo-lang" -version = "0.12.2" -description = "Compiler and runner for the Cairo language" -optional = false -python-versions = ">=3.6" -files = [ - {file = "cairo-lang-0.12.2.zip", hash = "sha256:5dc5f2ffc1f56385f56a5db526f5008830bcc8638a084812fcbff7735f7e6e43"}, -] - -[package.dependencies] -aiohttp = "*" -cachetools = "*" -ecdsa = "*" -eth-hash = {version = "*", extras = ["pycryptodome"]} -execnet = "*" -fastecdsa = "*" -frozendict = "*" -gprof2dot = "*" -lark = "*" -marshmallow = ">=3.2.1" -marshmallow-dataclass = ">=7.1.0" -marshmallow-enum = "*" -marshmallow-oneofschema = "*" -mpmath = "*" -numpy = "*" -pipdeptree = "*" -prometheus-client = "*" -pytest = "*" -pytest-asyncio = "*" -pytest-profiling = "*" -pytest-xdist = "*" -PyYAML = "*" -sympy = "*" -typeguard = "<3.0.0" -web3 = "*" - -[[package]] -name = "cairo-nile" -version = "0.14.0" -description = "StarkNet/Cairo development toolbelt" -optional = false -python-versions = "<3.10,>=3.8" -files = [ - {file = "cairo-nile-0.14.0.tar.gz", hash = "sha256:ed5d40f025b164275dcbccb030f64e0bc228fd2e1db286ee864c6fe2b5d3d379"}, - {file = "cairo_nile-0.14.0-py3-none-any.whl", hash = "sha256:830f406493d5e782aa89d04b60c292a0ad313d1c9c43099a336de5e3ab7f201c"}, -] - -[package.dependencies] -anyio = ">=3.6.1" -asyncclick = ">=8.1.3.4" -cairo-lang = ">=0.11.0.2" -click = ">=8.0,<9.0" -importlib-metadata = ">=4.0" -pytest = ">=7.1.3" -pytest-asyncio = ">=0.19.0" -python-dotenv = ">=0.19.2" -requests = ">=2.28.1" -starknet-devnet = ">=0.5.0" - -[package.extras] -testing = ["pytest", "pytest-cov", "setuptools", "tox", "twine"] - -[[package]] -name = "certifi" -version = "2023.7.22" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, - {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, -] - -[[package]] -name = "charset-normalizer" -version = "3.2.0" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, - {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, - {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, - {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, - {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, - {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, - {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, -] - -[[package]] -name = "click" -version = "8.1.7" -description = "Composable command line interface toolkit" -optional = false -python-versions = ">=3.7" -files = [ - {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, - {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, -] - -[package.dependencies] -colorama = {version = "*", markers = "platform_system == \"Windows\""} - -[[package]] -name = "cloudpickle" -version = "2.1.0" -description = "Extended pickling support for Python objects" -optional = false -python-versions = ">=3.6" -files = [ - {file = "cloudpickle-2.1.0-py3-none-any.whl", hash = "sha256:b5c434f75c34624eedad3a14f2be5ac3b5384774d5b0e3caf905c21479e6c4b1"}, - {file = "cloudpickle-2.1.0.tar.gz", hash = "sha256:bb233e876a58491d9590a676f93c7a5473a08f747d5ab9df7f9ce564b3e7938e"}, -] - -[[package]] -name = "colorama" -version = "0.4.6" -description = "Cross-platform colored terminal text." -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" -files = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] - -[[package]] -name = "crypto-cpp-py" -version = "1.4.0" -description = "This is a packaged crypto-cpp program" -optional = false -python-versions = ">=3.8" -files = [ - {file = "crypto_cpp_py-1.4.0-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:1c4ecd1dd58342f19a62c87a23e293a7906c9ad244c124e6a639a57dab0bed30"}, - {file = "crypto_cpp_py-1.4.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:68b4eb02e2a9301461a83986ff7a072e6845be73ad0a9b72ac2da71c99d2c6f5"}, - {file = "crypto_cpp_py-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:84e5c0dc6161394a83247da5089b041ed0317298619c7d8e8691a1f0411fe20b"}, - {file = "crypto_cpp_py-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bf84825b00fe38d946f782989a67736937e052481dd7033f68c6f88c6c03513e"}, - {file = "crypto_cpp_py-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:56cb2923f539703418ef27321d6e2c4097cd723ca4c786464279112f938a812a"}, - {file = "crypto_cpp_py-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b404a4a9e5b8aad23081d8aa3f0efcab959cdc2b691f332bf5a48b09be629f3"}, - {file = "crypto_cpp_py-1.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:2c4e5470640e481aa25717e0e302bdac01bc806154dcd73c77416081c039a267"}, - {file = "crypto_cpp_py-1.4.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:df53ff8e5c5201b70b71e850f92933fa5827f35fb04b6bbe2f5d44c236ca122b"}, - {file = "crypto_cpp_py-1.4.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:074ada00312cec995e1d8607eb113035d99fa058cfb810a4559e9552d8722203"}, - {file = "crypto_cpp_py-1.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c0278075eaf32bca824a93e19aac92e17c74f37382e7ba5ae511b0a0f6f51ad5"}, - {file = "crypto_cpp_py-1.4.0-cp310-cp310-win32.whl", hash = "sha256:f8e095d05e55daf3745040736bf0047c5e0d9c3435b48f90f9d4d8a37ba93e1f"}, - {file = "crypto_cpp_py-1.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:e7a4aea60c5330e4e7810b1caf17e959fde236e08702d710eb6b9bf7188405f6"}, - {file = "crypto_cpp_py-1.4.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:b4d488401ba2ca4da0df383f5957ff5e384c8f38c5cb8f7ff06f46693a1d7c04"}, - {file = "crypto_cpp_py-1.4.0-cp311-cp311-macosx_12_0_universal2.whl", hash = "sha256:9cd4f4ea95f34f8760310f4430e2d637e8bfaa1ae24584cccb52dad227c65f83"}, - {file = "crypto_cpp_py-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca70561cba811c121e144d9b22f301c348e1ff4a19de982c686c95a9bb9f3682"}, - {file = "crypto_cpp_py-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2385945d57112da09d8ffa580974d32f040831cb0b6244e77c9e7bba624fb589"}, - {file = "crypto_cpp_py-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10267cf3281912ecbb3e641e46ab368fc9ba001b0ce2b07d5fe95fcda00d7f9a"}, - {file = "crypto_cpp_py-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a4d55c085064b6037c8e3a46a7cad0882b0bd6b5a58713060ffc00f6da0e22f"}, - {file = "crypto_cpp_py-1.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:45fe137c2f5e18d203c0173714bf92ee28276fdbd7b554bd1563575a6fcb70f5"}, - {file = "crypto_cpp_py-1.4.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:10e164020760b48ef13b82c1831451cf296995c7a5df5f62ded9ed2035827ab1"}, - {file = "crypto_cpp_py-1.4.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:947502591a163fd83d81515f3807fccb2ca2bed547c75757dd4b09c343f5be96"}, - {file = "crypto_cpp_py-1.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3d4ae978d0a7cdc5979120806c453792d036eac906e4b71d903888194f9e31d9"}, - {file = "crypto_cpp_py-1.4.0-cp311-cp311-win32.whl", hash = "sha256:05ee4f1a16ab4248210543045f9ebb8632554d0ff4349fe1962647b967de7dd3"}, - {file = "crypto_cpp_py-1.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:8f33d78f472ac2bdb65b9039943dddb29277ae28674a7b6154adbac8b4ff7667"}, - {file = "crypto_cpp_py-1.4.0-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:669ed860c300e68d846a5e3d6c9118d6ff97a1743798d472d53cf5a10036af8d"}, - {file = "crypto_cpp_py-1.4.0-cp38-cp38-macosx_12_0_universal2.whl", hash = "sha256:88ce1281885c52fabd9591cef334251dfe69941a22197921df2d27618894e0e5"}, - {file = "crypto_cpp_py-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a4f4524b3d47f000029830d381280278d365f2803622fab6711e35219c5aca3"}, - {file = "crypto_cpp_py-1.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e21b6db004142cdb78837b0c98174ca73ff30645b36ddc77762f0fbdd517107d"}, - {file = "crypto_cpp_py-1.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:22167f0207fdacb075a4e92e3e565d8dbafc637e4f5a612b3023a85a6de99245"}, - {file = "crypto_cpp_py-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21dfe5cda519178225a2b1926c2d82b85afaae8a86c9b17255243f2fef51181c"}, - {file = "crypto_cpp_py-1.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:346d8a36f4ab770aa7f3ecc7634b141032d52d05c2cf4a28d1abf26fbc7aec18"}, - {file = "crypto_cpp_py-1.4.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:d3337e7d927ab4b7491b561361a78cca5992130c63aaa173e54e6b8aeab0033e"}, - {file = "crypto_cpp_py-1.4.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:872e8cb0d8f48f60c4573bf84104178420fb3539dd6fe94bbdf093f8db3ee36e"}, - {file = "crypto_cpp_py-1.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f7fcdfca7936e6b9b87b10860a7e3d3dc1645a0d3f18f9b0eab17484f756326c"}, - {file = "crypto_cpp_py-1.4.0-cp38-cp38-win32.whl", hash = "sha256:4733d111fbefa8b13095f27716d2b3197996f8580985a9a2936b83d561a3558e"}, - {file = "crypto_cpp_py-1.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:4681d4f5e1e6c422c4514b608886fbc72abb0560a4d64d6a23b8c7c5de6f5f1e"}, - {file = "crypto_cpp_py-1.4.0-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:f6f883d8b5a9d6473ae6d3529aa6acbb3165856530dca7b43a67f633e0e1b960"}, - {file = "crypto_cpp_py-1.4.0-cp39-cp39-macosx_12_0_universal2.whl", hash = "sha256:430523259b582f7877374f34bd9ff1916d3ede37df3b69f636b38bf523d70261"}, - {file = "crypto_cpp_py-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0cca3370df99cb59c2809dfe31efe76b7705e5fa51338771c948bb15da31fcd"}, - {file = "crypto_cpp_py-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b94dc178b8a5a668737f5f4daa26cbc98b25e98a5b307b22f7e544d2360eef87"}, - {file = "crypto_cpp_py-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5ce6cbadbe0a05bfc06258c2921d00bdd84c4e059dde5ff89a8677084f5c5c2"}, - {file = "crypto_cpp_py-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:37a32bfd7a0e9162e532cdf8597cc4a41a5ff52d1e670e52b4e5ccfd84153789"}, - {file = "crypto_cpp_py-1.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b655e8d73a0e8824deaf4c644c2c111159a3142114f3ae8fd5b674e0ef0f3ecc"}, - {file = "crypto_cpp_py-1.4.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:bf1ca7d8b7398f6f7e880f09dc198bb9c4f09f9de0fe3057ef06fc38a74f930a"}, - {file = "crypto_cpp_py-1.4.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:f785af5aa84a8389c8320e038dc2fde395f064659f4f409606115c24fb88f484"}, - {file = "crypto_cpp_py-1.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:21e4c6a0e5931f7c69670f007c4079e6d446c435eb2e31adc86e95fdca91397f"}, - {file = "crypto_cpp_py-1.4.0-cp39-cp39-win32.whl", hash = "sha256:178c3616723e9db7cbfe94114a49716f57b2741118d51db40afa3c0d892628ed"}, - {file = "crypto_cpp_py-1.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:605e2f812aa217f4f28ca2b7a8bf72bd0637a907a8b8f9cd2cfbe5696256706f"}, - {file = "crypto_cpp_py-1.4.0.tar.gz", hash = "sha256:e1e245d7e69c856e36be4df7971f8771407012ebdb23fe7addd6535826257587"}, -] - -[package.dependencies] -ecdsa = "0.18.0" -pywin32 = {version = "306", markers = "os_name == \"nt\""} -sympy = "1.11.1" - -[package.extras] -build = ["cmake (>=3.22.4)"] - -[[package]] -name = "cytoolz" -version = "0.12.2" -description = "Cython implementation of Toolz: High performance functional utilities" -optional = false -python-versions = ">=3.6" -files = [ - {file = "cytoolz-0.12.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4bff49986c9bae127928a2f9fd6313146a342bfae8292f63e562f872bd01b871"}, - {file = "cytoolz-0.12.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:908c13f305d34322e11b796de358edaeea47dd2d115c33ca22909c5e8fb036fd"}, - {file = "cytoolz-0.12.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:735147aa41b8eeb104da186864b55e2a6623c758000081d19c93d759cd9523e3"}, - {file = "cytoolz-0.12.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7d352d4de060604e605abdc5c8a5d0429d5f156cb9866609065d3003454d4cea"}, - {file = "cytoolz-0.12.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:89247ac220031a4f9f689688bcee42b38fd770d4cce294e5d914afc53b630abe"}, - {file = "cytoolz-0.12.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9070ae35c410d644e6df98a8f69f3ed2807e657d0df2a26b2643127cbf6944a5"}, - {file = "cytoolz-0.12.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:843500cd3e4884b92fd4037912bc42d5f047108d2c986d36352e880196d465b0"}, - {file = "cytoolz-0.12.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6a93644d7996fd696ab7f1f466cd75d718d0a00d5c8118b9fe8c64231dc1f85e"}, - {file = "cytoolz-0.12.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:96796594c770bc6587376e74ddc7d9c982d68f47116bb69d90873db5e0ea88b6"}, - {file = "cytoolz-0.12.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:48425107fbb1af3f0f2410c004f16be10ffc9374358e5600b57fa543f46f8def"}, - {file = "cytoolz-0.12.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:cde6dbb788a4cbc4a80a72aa96386ba4c2b17bdfff3ace0709799adbe16d6476"}, - {file = "cytoolz-0.12.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:68ae7091cc73a752f0b938f15bb193de80ca5edf5ae2ea6360d93d3e9228357b"}, - {file = "cytoolz-0.12.2-cp310-cp310-win32.whl", hash = "sha256:997b7e0960072f6bb445402da162f964ea67387b9f18bda2361edcc026e13597"}, - {file = "cytoolz-0.12.2-cp310-cp310-win_amd64.whl", hash = "sha256:663911786dcde3e4a5d88215c722c531c7548903dc07d418418c0d1c768072c0"}, - {file = "cytoolz-0.12.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4a7d8b869ded171f6cdf584fc2fc6ae03b30a0e1e37a9daf213a59857a62ed90"}, - {file = "cytoolz-0.12.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9b28787eaf2174e68f0acb3c66f9c6b98bdfeb0930c0d0b08e1941c7aedc8d27"}, - {file = "cytoolz-0.12.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00547da587f124b32b072ce52dd5e4b37cf199fedcea902e33c67548523e4678"}, - {file = "cytoolz-0.12.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:275d53fd769df2102d6c9fc98e553bd8a9a38926f54d6b20cf29f0dd00bf3b75"}, - {file = "cytoolz-0.12.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5556acde785a61d4cf8b8534ae109b023cbd2f9df65ee2afbe070be47c410f8c"}, - {file = "cytoolz-0.12.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b41a85b9b9a2530b72b0d3d10e383fc3c2647ae88169d557d5e216f881860318"}, - {file = "cytoolz-0.12.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:673d6e9e3aa86949343b46ac2b7be266c36e07ce77fa1d40f349e6987a814d6e"}, - {file = "cytoolz-0.12.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:81e6a9a8fda78a2f4901d2915b25bf620f372997ca1f20a14f7cefef5ad6f6f4"}, - {file = "cytoolz-0.12.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:fa44215bc31675a6380cd896dadb7f2054a7b94cfb87e53e52af844c65406a54"}, - {file = "cytoolz-0.12.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:a08b4346350660799d81d4016e748bcb134a9083301d41f9618f64a6077f89f2"}, - {file = "cytoolz-0.12.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:2fb740482794a72e2e5fec58e4d9b00dcd5a60a8cef68431ff12f2ba0e0d9a7e"}, - {file = "cytoolz-0.12.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9007bb1290c79402be6b84bcf9e7a622a073859d61fcee146dc7bc47afe328f3"}, - {file = "cytoolz-0.12.2-cp311-cp311-win32.whl", hash = "sha256:a973f5286758f76824ecf19ae1999f6697371a9121c8f163295d181d19a819d7"}, - {file = "cytoolz-0.12.2-cp311-cp311-win_amd64.whl", hash = "sha256:1ce324d1b413636ea5ee929f79637821f13c9e55e9588f38228947294944d2ed"}, - {file = "cytoolz-0.12.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:c08094b9e5d1b6dfb0845a0253cc2655ca64ce70d15162dfdb102e28c8993493"}, - {file = "cytoolz-0.12.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:baf020f4b708f800b353259cd7575e335a79f1ac912d9dda55b2aa0bf3616e42"}, - {file = "cytoolz-0.12.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4416ee86a87180b6a28e7483102c92debc077bec59c67eda8cc63fc52a218ac0"}, - {file = "cytoolz-0.12.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c6ee222671eed5c5b16a5ad2aea07f0a715b8b199ee534834bc1dd2798f1ade7"}, - {file = "cytoolz-0.12.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad92e37be0b106fdbc575a3a669b43b364a5ef334495c9764de4c2d7541f7a99"}, - {file = "cytoolz-0.12.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:460c05238fbfe6d848141669d17a751a46c923f9f0c9fd8a3a462ab737623a44"}, - {file = "cytoolz-0.12.2-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:9e5075e30be626ef0f9bedf7a15f55ed4d7209e832bc314fdc232dbd61dcbf44"}, - {file = "cytoolz-0.12.2-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:03b58f843f09e73414e82e57f7e8d88f087eaabf8f276b866a40661161da6c51"}, - {file = "cytoolz-0.12.2-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5e4e612b7ecc9596e7c859cd9e0cd085e6d0c576b4f0d917299595eb56bf9c05"}, - {file = "cytoolz-0.12.2-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:08a0e03f287e45eb694998bb55ac1643372199c659affa8319dfbbdec7f7fb3c"}, - {file = "cytoolz-0.12.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:b029bdd5a8b6c9a7c0e8fdbe4fc25ffaa2e09b77f6f3462314696e3a20511829"}, - {file = "cytoolz-0.12.2-cp36-cp36m-win32.whl", hash = "sha256:18580d060fa637ff01541640ecde6de832a248df02b8fb57e6dd578f189d62c7"}, - {file = "cytoolz-0.12.2-cp36-cp36m-win_amd64.whl", hash = "sha256:97cf514a9f3426228d8daf880f56488330e4b2948a6d183a106921217850d9eb"}, - {file = "cytoolz-0.12.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:18a0f838677f9510aef0330c0096778dd6406d21d4ff9504bf79d85235a18460"}, - {file = "cytoolz-0.12.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb081b2b02bf4405c804de1ece6f904916838ab0e057f1446e4ac12fac827960"}, - {file = "cytoolz-0.12.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:57233e1600560ceb719bed759dc78393edd541b9a3e7fefc3079abd83c26a6ea"}, - {file = "cytoolz-0.12.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0295289c4510efa41174850e75bc9188f82b72b1b54d0ea57d1781729c2924d5"}, - {file = "cytoolz-0.12.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a92aab8dd1d427ac9bc7480cfd3481dbab0ef024558f2f5a47de672d8a5ffaa"}, - {file = "cytoolz-0.12.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:51d3495235af09f21aa92a7cdd51504bda640b108b6be834448b774f52852c09"}, - {file = "cytoolz-0.12.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:f9c690b359f503f18bf1c46a6456370e4f6f3fc4320b8774ae69c4f85ecc6c94"}, - {file = "cytoolz-0.12.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:481e3129a76ea01adcc0e7097ccb8dbddab1cfc40b6f0e32c670153512957c0f"}, - {file = "cytoolz-0.12.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:55e94124af9c8fbb1df54195cc092688fdad0765641b738970b6f1d5ea72e776"}, - {file = "cytoolz-0.12.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:5616d386dfbfba7c39e9418ba668c734f6ceaacc0130877e8a100cad11e6838b"}, - {file = "cytoolz-0.12.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:732d08228fa8d366fec284f7032cc868d28a99fa81fc71e3adf7ecedbcf33a0f"}, - {file = "cytoolz-0.12.2-cp37-cp37m-win32.whl", hash = "sha256:f039c5373f7b314b151432c73219216857b19ab9cb834f0eb5d880f74fc7851c"}, - {file = "cytoolz-0.12.2-cp37-cp37m-win_amd64.whl", hash = "sha256:246368e983eaee9851b15d7755f82030eab4aa82098d2a34f6bef9c689d33fcc"}, - {file = "cytoolz-0.12.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:81074edf3c74bc9bd250d223408a5df0ff745d1f7a462597536cd26b9390e2d6"}, - {file = "cytoolz-0.12.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:960d85ebaa974ecea4e71fa56d098378fa51fd670ee744614cbb95bf95e28fc7"}, - {file = "cytoolz-0.12.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c8d0dff4865da54ae825d43e1721925721b19f3b9aca8e730c2ce73dee2c630"}, - {file = "cytoolz-0.12.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0a9d12436fd64937bd2c9609605f527af7f1a8db6e6637639b44121c0fe715d6"}, - {file = "cytoolz-0.12.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd461e402e24929d866f05061d2f8337e3a8456e75e21b72c125abff2477c7f7"}, - {file = "cytoolz-0.12.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0568d4da0a9ee9f9f5ab318f6501557f1cfe26d18c96c8e0dac7332ae04c6717"}, - {file = "cytoolz-0.12.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:101b5bd32badfc8b1f9c7be04ba3ae04fb47f9c8736590666ce9449bff76e0b1"}, - {file = "cytoolz-0.12.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8bb624dbaef4661f5e3625c1e39ad98ecceef281d1380e2774d8084ad0810275"}, - {file = "cytoolz-0.12.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3e993804e6b04113d61fdb9541b6df2f096ec265a506dad7437517470919c90f"}, - {file = "cytoolz-0.12.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ab911033e5937fc221a2c165acce7f66ae5ac9d3e54bec56f3c9c197a96be574"}, - {file = "cytoolz-0.12.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6de6a4bdfaee382c2de2a3580b3ae76fce6105da202bbd835e5efbeae6a9c6e"}, - {file = "cytoolz-0.12.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:9480b4b327be83c4d29cb88bcace761b11f5e30198ffe2287889455c6819e934"}, - {file = "cytoolz-0.12.2-cp38-cp38-win32.whl", hash = "sha256:4180b2785d1278e6abb36a72ac97c92432db53fa2df00ee943d2c15a33627d31"}, - {file = "cytoolz-0.12.2-cp38-cp38-win_amd64.whl", hash = "sha256:d0086ba8d41d73647b13087a3ca9c020f6bfec338335037e8f5172b4c7c8dce5"}, - {file = "cytoolz-0.12.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d29988bde28a90a00367edcf92afa1a2f7ecf43ea3ae383291b7da6d380ccc25"}, - {file = "cytoolz-0.12.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:24c0d71e9ac91f4466b1bd280f7de43aa4d94682daaf34d85d867a9b479b87cc"}, - {file = "cytoolz-0.12.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fa436abd4ac9ca71859baf5794614e6ec8fa27362f0162baedcc059048da55f7"}, - {file = "cytoolz-0.12.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45c7b4eac7571707269ebc2893facdf87e359cd5c7cfbfa9e6bd8b33fb1079c5"}, - {file = "cytoolz-0.12.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:294d24edc747ef4e1b28e54365f713becb844e7898113fafbe3e9165dc44aeea"}, - {file = "cytoolz-0.12.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:478051e5ef8278b2429864c8d148efcebdc2be948a61c9a44757cd8c816c98f5"}, - {file = "cytoolz-0.12.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14108cafb140dd68fdda610c2bbc6a37bf052cd48cfebf487ed44145f7a2b67f"}, - {file = "cytoolz-0.12.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5fef7b602ccf8a3c77ab483479ccd7a952a8c5bb1c263156671ba7aaa24d1035"}, - {file = "cytoolz-0.12.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9bf51354e15520715f068853e6ab8190e77139940e8b8b633bdb587956a08fb0"}, - {file = "cytoolz-0.12.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:388f840fd911d61a96e9e595eaf003f9dc39e847c9060b8e623ab29e556f009b"}, - {file = "cytoolz-0.12.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:a67f75cc51a2dc7229a8ac84291e4d61dc5abfc8940befcf37a2836d95873340"}, - {file = "cytoolz-0.12.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:63b31345e20afda2ae30dba246955517a4264464d75e071fc2fa641e88c763ec"}, - {file = "cytoolz-0.12.2-cp39-cp39-win32.whl", hash = "sha256:f6e86ac2b45a95f75c6f744147483e0fc9697ce7dfe1726083324c236f873f8b"}, - {file = "cytoolz-0.12.2-cp39-cp39-win_amd64.whl", hash = "sha256:5998f81bf6a2b28a802521efe14d9fc119f74b64e87b62ad1b0e7c3d8366d0c7"}, - {file = "cytoolz-0.12.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:593e89e2518eaf81e96edcc9ef2c5fca666e8fc922b03d5cb7a7b8964dbee336"}, - {file = "cytoolz-0.12.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ff451d614ca1d4227db0ffa627fb51df71968cf0d9baf0210528dad10fdbc3ab"}, - {file = "cytoolz-0.12.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ad9ea4a50d2948738351790047d45f2b1a023facc01bf0361988109b177e8b2f"}, - {file = "cytoolz-0.12.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbe038bb78d599b5a29d09c438905defaa615a522bc7e12f8016823179439497"}, - {file = "cytoolz-0.12.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:d494befe648c13c98c0f3d56d05489c839c9228a32f58e9777305deb6c2c1cee"}, - {file = "cytoolz-0.12.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c26805b6c8dc8565ed91045c44040bf6c0fe5cb5b390c78cd1d9400d08a6cd39"}, - {file = "cytoolz-0.12.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df4e32badb2ccf1773e1e74020b7e3b8caf9e92f842c6be7d14888ecdefc2c6c"}, - {file = "cytoolz-0.12.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce7889dc3701826d519ede93cdff11940fb5567dbdc165dce0e78047eece02b7"}, - {file = "cytoolz-0.12.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c820608e7077416f766b148d75e158e454881961881b657cff808529d261dd24"}, - {file = "cytoolz-0.12.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:698da4fa1f7baeea0607738cb1f9877ed1ba50342b29891b0223221679d6f729"}, - {file = "cytoolz-0.12.2.tar.gz", hash = "sha256:31d4b0455d72d914645f803d917daf4f314d115c70de0578d3820deb8b101f66"}, -] - -[package.dependencies] -toolz = ">=0.8.0" - -[package.extras] -cython = ["cython"] - -[[package]] -name = "ecdsa" -version = "0.18.0" -description = "ECDSA cryptographic signature library (pure python)" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "ecdsa-0.18.0-py2.py3-none-any.whl", hash = "sha256:80600258e7ed2f16b9aa1d7c295bd70194109ad5a30fdee0eaeefef1d4c559dd"}, - {file = "ecdsa-0.18.0.tar.gz", hash = "sha256:190348041559e21b22a1d65cee485282ca11a6f81d503fddb84d5017e9ed1e49"}, -] - -[package.dependencies] -six = ">=1.9.0" - -[package.extras] -gmpy = ["gmpy"] -gmpy2 = ["gmpy2"] - -[[package]] -name = "eth-abi" -version = "4.2.1" -description = "eth_abi: Python utilities for working with Ethereum ABI definitions, especially encoding and decoding" -optional = false -python-versions = ">=3.7.2, <4" -files = [ - {file = "eth_abi-4.2.1-py3-none-any.whl", hash = "sha256:abd83410a5326145bf178675c276de0ed154f6dc695dcad1beafaa44d97f44ae"}, - {file = "eth_abi-4.2.1.tar.gz", hash = "sha256:60d88788d53725794cdb07c0f0bb0df2a31a6e1ad19644313fe6117ac24eeeb0"}, -] - -[package.dependencies] -eth-typing = ">=3.0.0" -eth-utils = ">=2.0.0" -parsimonious = ">=0.9.0,<0.10.0" - -[package.extras] -dev = ["black (>=23)", "build (>=0.9.0)", "bumpversion (>=0.5.3)", "eth-hash[pycryptodome]", "flake8 (==6.0.0)", "flake8-bugbear (==23.3.23)", "hypothesis (>=4.18.2,<5.0.0)", "ipython", "isort (>=5.10.1)", "mypy (==0.971)", "pydocstyle (>=6.0.0)", "pytest (>=7.0.0)", "pytest-pythonpath (>=0.7.1)", "pytest-watch (>=4.1.0)", "pytest-xdist (>=2.4.0)", "sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "wheel"] -doc = ["sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)"] -lint = ["black (>=23)", "flake8 (==6.0.0)", "flake8-bugbear (==23.3.23)", "isort (>=5.10.1)", "mypy (==0.971)", "pydocstyle (>=6.0.0)"] -test = ["eth-hash[pycryptodome]", "hypothesis (>=4.18.2,<5.0.0)", "pytest (>=7.0.0)", "pytest-pythonpath (>=0.7.1)", "pytest-xdist (>=2.4.0)"] -tools = ["hypothesis (>=4.18.2,<5.0.0)"] - -[[package]] -name = "eth-account" -version = "0.9.0" -description = "eth-account: Sign Ethereum transactions and messages with local private keys" -optional = false -python-versions = ">=3.7, <4" -files = [ - {file = "eth-account-0.9.0.tar.gz", hash = "sha256:5f66ecb7bc52569924dfaf4a9add501b1c2a4901eec74e3c0598cd26d0971777"}, - {file = "eth_account-0.9.0-py3-none-any.whl", hash = "sha256:35636ca14e9063dea233648703338be1a44e8cb1a2f9de1519d2b1be4655da59"}, -] - -[package.dependencies] -bitarray = ">=2.4.0" -eth-abi = ">=4.0.0-b.2" -eth-keyfile = ">=0.6.0" -eth-keys = ">=0.4.0" -eth-rlp = ">=0.3.0" -eth-utils = ">=2.0.0" -hexbytes = ">=0.1.0" -rlp = ">=1.0.0" - -[package.extras] -dev = ["black (>=23)", "build (>=0.9.0)", "bumpversion (>=0.5.3)", "coverage", "flake8 (==6.0.0)", "flake8-bugbear (==23.3.23)", "hypothesis (>=4.18.0,<5)", "ipython", "isort (>=5.10.1)", "mypy (==0.971)", "pydocstyle (>=6.0.0)", "pytest (>=7.0.0)", "pytest-watch (>=4.1.0)", "pytest-xdist (>=2.4.0)", "sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "wheel"] -doc = ["sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)"] -lint = ["black (>=23)", "flake8 (==6.0.0)", "flake8-bugbear (==23.3.23)", "isort (>=5.10.1)", "mypy (==0.971)", "pydocstyle (>=6.0.0)"] -test = ["coverage", "hypothesis (>=4.18.0,<5)", "pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)"] - -[[package]] -name = "eth-hash" -version = "0.5.2" -description = "eth-hash: The Ethereum hashing function, keccak256, sometimes (erroneously) called sha3" -optional = false -python-versions = ">=3.7, <4" -files = [ - {file = "eth-hash-0.5.2.tar.gz", hash = "sha256:1b5f10eca7765cc385e1430eefc5ced6e2e463bb18d1365510e2e539c1a6fe4e"}, - {file = "eth_hash-0.5.2-py3-none-any.whl", hash = "sha256:251f62f6579a1e247561679d78df37548bd5f59908da0b159982bf8293ad32f0"}, -] - -[package.dependencies] -pycryptodome = {version = ">=3.6.6,<4", optional = true, markers = "extra == \"pycryptodome\""} - -[package.extras] -dev = ["black (>=23)", "build (>=0.9.0)", "bumpversion (>=0.5.3)", "flake8 (==6.0.0)", "flake8-bugbear (==23.3.23)", "ipython", "isort (>=5.10.1)", "mypy (==0.971)", "pydocstyle (>=6.0.0)", "pytest (>=7.0.0)", "pytest-watch (>=4.1.0)", "pytest-xdist (>=2.4.0)", "sphinx (>=6.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "wheel"] -doc = ["sphinx (>=6.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)"] -lint = ["black (>=23)", "flake8 (==6.0.0)", "flake8-bugbear (==23.3.23)", "isort (>=5.10.1)", "mypy (==0.971)", "pydocstyle (>=6.0.0)"] -pycryptodome = ["pycryptodome (>=3.6.6,<4)"] -pysha3 = ["pysha3 (>=1.0.0,<2.0.0)", "safe-pysha3 (>=1.0.0)"] -test = ["pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)"] - -[[package]] -name = "eth-keyfile" -version = "0.6.1" -description = "A library for handling the encrypted keyfiles used to store ethereum private keys." -optional = false -python-versions = "*" -files = [ - {file = "eth-keyfile-0.6.1.tar.gz", hash = "sha256:471be6e5386fce7b22556b3d4bde5558dbce46d2674f00848027cb0a20abdc8c"}, - {file = "eth_keyfile-0.6.1-py3-none-any.whl", hash = "sha256:609773a1ad5956944a33348413cad366ec6986c53357a806528c8f61c4961560"}, -] - -[package.dependencies] -eth-keys = ">=0.4.0,<0.5.0" -eth-utils = ">=2,<3" -pycryptodome = ">=3.6.6,<4" - -[package.extras] -dev = ["bumpversion (>=0.5.3,<1)", "eth-keys (>=0.4.0,<0.5.0)", "eth-utils (>=2,<3)", "flake8 (==4.0.1)", "idna (==2.7)", "pluggy (>=1.0.0,<2)", "pycryptodome (>=3.6.6,<4)", "pytest (>=6.2.5,<7)", "requests (>=2.20,<3)", "setuptools (>=38.6.0)", "tox (>=2.7.0)", "twine", "wheel"] -keyfile = ["eth-keys (>=0.4.0,<0.5.0)", "eth-utils (>=2,<3)", "pycryptodome (>=3.6.6,<4)"] -lint = ["flake8 (==4.0.1)"] -test = ["pytest (>=6.2.5,<7)"] - -[[package]] -name = "eth-keys" -version = "0.4.0" -description = "Common API for Ethereum key operations." -optional = false -python-versions = "*" -files = [ - {file = "eth-keys-0.4.0.tar.gz", hash = "sha256:7d18887483bc9b8a3fdd8e32ddcb30044b9f08fcb24a380d93b6eee3a5bb3216"}, - {file = "eth_keys-0.4.0-py3-none-any.whl", hash = "sha256:e07915ffb91277803a28a379418bdd1fad1f390c38ad9353a0f189789a440d5d"}, -] - -[package.dependencies] -eth-typing = ">=3.0.0,<4" -eth-utils = ">=2.0.0,<3.0.0" - -[package.extras] -coincurve = ["coincurve (>=7.0.0,<16.0.0)"] -dev = ["asn1tools (>=0.146.2,<0.147)", "bumpversion (==0.5.3)", "eth-hash[pycryptodome]", "eth-hash[pysha3]", "eth-typing (>=3.0.0,<4)", "eth-utils (>=2.0.0,<3.0.0)", "factory-boy (>=3.0.1,<3.1)", "flake8 (==3.0.4)", "hypothesis (>=5.10.3,<6.0.0)", "mypy (==0.782)", "pyasn1 (>=0.4.5,<0.5)", "pytest (==6.2.5)", "tox (==3.20.0)", "twine"] -eth-keys = ["eth-typing (>=3.0.0,<4)", "eth-utils (>=2.0.0,<3.0.0)"] -lint = ["flake8 (==3.0.4)", "mypy (==0.782)"] -test = ["asn1tools (>=0.146.2,<0.147)", "eth-hash[pycryptodome]", "eth-hash[pysha3]", "factory-boy (>=3.0.1,<3.1)", "hypothesis (>=5.10.3,<6.0.0)", "pyasn1 (>=0.4.5,<0.5)", "pytest (==6.2.5)"] - -[[package]] -name = "eth-rlp" -version = "0.3.0" -description = "eth-rlp: RLP definitions for common Ethereum objects in Python" -optional = false -python-versions = ">=3.7, <4" -files = [ - {file = "eth-rlp-0.3.0.tar.gz", hash = "sha256:f3263b548df718855d9a8dbd754473f383c0efc82914b0b849572ce3e06e71a6"}, - {file = "eth_rlp-0.3.0-py3-none-any.whl", hash = "sha256:e88e949a533def85c69fa94224618bbbd6de00061f4cff645c44621dab11cf33"}, -] - -[package.dependencies] -eth-utils = ">=2.0.0,<3" -hexbytes = ">=0.1.0,<1" -rlp = ">=0.6.0,<4" - -[package.extras] -dev = ["Sphinx (>=1.6.5,<2)", "bumpversion (>=0.5.3,<1)", "eth-hash[pycryptodome]", "flake8 (==3.7.9)", "ipython", "isort (>=4.2.15,<5)", "mypy (==0.770)", "pydocstyle (>=3.0.0,<4)", "pytest (>=6.2.5,<7)", "pytest-watch (>=4.1.0,<5)", "pytest-xdist", "sphinx-rtd-theme (>=0.1.9)", "towncrier (>=19.2.0,<20)", "tox (==3.14.6)", "twine", "wheel"] -doc = ["Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9)", "towncrier (>=19.2.0,<20)"] -lint = ["flake8 (==3.7.9)", "isort (>=4.2.15,<5)", "mypy (==0.770)", "pydocstyle (>=3.0.0,<4)"] -test = ["eth-hash[pycryptodome]", "pytest (>=6.2.5,<7)", "pytest-xdist", "tox (==3.14.6)"] - -[[package]] -name = "eth-typing" -version = "3.4.0" -description = "eth-typing: Common type annotations for ethereum python packages" -optional = false -python-versions = ">=3.7.2, <4" -files = [ - {file = "eth-typing-3.4.0.tar.gz", hash = "sha256:7f49610469811ee97ac43eaf6baa294778ce74042d41e61ecf22e5ebe385590f"}, - {file = "eth_typing-3.4.0-py3-none-any.whl", hash = "sha256:347d50713dd58ab50063b228d8271624ab2de3071bfa32d467b05f0ea31ab4c5"}, -] - -[package.extras] -dev = ["black (>=23)", "build (>=0.9.0)", "bumpversion (>=0.5.3)", "flake8 (==6.0.0)", "flake8-bugbear (==23.3.23)", "ipython", "isort (>=5.10.1)", "mypy (==0.971)", "pydocstyle (>=6.0.0)", "pytest (>=7.0.0)", "pytest-watch (>=4.1.0)", "pytest-xdist (>=2.4.0)", "sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "wheel"] -doc = ["sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)"] -lint = ["black (>=23)", "flake8 (==6.0.0)", "flake8-bugbear (==23.3.23)", "isort (>=5.10.1)", "mypy (==0.971)", "pydocstyle (>=6.0.0)"] -test = ["pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)"] - -[[package]] -name = "eth-utils" -version = "2.2.1" -description = "eth-utils: Common utility functions for python code that interacts with Ethereum" -optional = false -python-versions = ">=3.7,<4" -files = [ - {file = "eth-utils-2.2.1.tar.gz", hash = "sha256:f79a95f86dd991344697c763db40271dbe43fbbcd5776f49b0c4fb7b645ee1c4"}, - {file = "eth_utils-2.2.1-py3-none-any.whl", hash = "sha256:60fc999c1b4ae011ab600b01a3eb5375156f3bc46e7cd1a83ca9e6e14bb9b13c"}, -] - -[package.dependencies] -cytoolz = {version = ">=0.10.1", markers = "implementation_name == \"cpython\""} -eth-hash = ">=0.3.1" -eth-typing = ">=3.0.0" -toolz = {version = ">0.8.2", markers = "implementation_name == \"pypy\""} - -[package.extras] -dev = ["black (>=23)", "build (>=0.9.0)", "bumpversion (>=0.5.3)", "eth-hash[pycryptodome]", "flake8 (==3.8.3)", "hypothesis (>=4.43.0)", "ipython", "isort (>=5.11.0)", "mypy (==0.971)", "pydocstyle (>=5.0.0)", "pytest (>=7.0.0)", "pytest-watch (>=4.1.0)", "pytest-xdist (>=2.4.0)", "sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "types-setuptools", "wheel"] -doc = ["sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)"] -lint = ["black (>=23)", "flake8 (==3.8.3)", "isort (>=5.11.0)", "mypy (==0.971)", "pydocstyle (>=5.0.0)", "types-setuptools"] -test = ["hypothesis (>=4.43.0)", "mypy (==0.971)", "pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)", "types-setuptools"] - -[[package]] -name = "exceptiongroup" -version = "1.1.3" -description = "Backport of PEP 654 (exception groups)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.1.3-py3-none-any.whl", hash = "sha256:343280667a4585d195ca1cf9cef84a4e178c4b6cf2274caef9859782b567d5e3"}, - {file = "exceptiongroup-1.1.3.tar.gz", hash = "sha256:097acd85d473d75af5bb98e41b61ff7fe35efe6675e4f9370ec6ec5126d160e9"}, -] - -[package.extras] -test = ["pytest (>=6)"] - -[[package]] -name = "execnet" -version = "2.0.2" -description = "execnet: rapid multi-Python deployment" -optional = false -python-versions = ">=3.7" -files = [ - {file = "execnet-2.0.2-py3-none-any.whl", hash = "sha256:88256416ae766bc9e8895c76a87928c0012183da3cc4fc18016e6f050e025f41"}, - {file = "execnet-2.0.2.tar.gz", hash = "sha256:cc59bc4423742fd71ad227122eb0dd44db51efb3dc4095b45ac9a08c770096af"}, -] - -[package.extras] -testing = ["hatch", "pre-commit", "pytest", "tox"] - -[[package]] -name = "fastecdsa" -version = "2.3.0" -description = "Fast elliptic curve digital signatures" -optional = false -python-versions = ">=3.7" -files = [ - {file = "fastecdsa-2.3.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:0147804e6bf4915e83064f17a4bcc518d986dab87cba3609409e9f56b8d56772"}, - {file = "fastecdsa-2.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:c72f8f13160798b431c8a772e4e4bce39adf6faeea80fbf75f88010d0b304aa1"}, - {file = "fastecdsa-2.3.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b943a1ad3e1e306f0df422b198f544d029a70f19581e5b56a36ddfbe6302a33d"}, - {file = "fastecdsa-2.3.0-cp37-cp37m-macosx_12_0_arm64.whl", hash = "sha256:82985e09b299ba400f1a21f2872dcc8e659bc127286f026d01b3540853298f9c"}, - {file = "fastecdsa-2.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:8011db68e65b747b11ffa9575dc5bc6ad6d02aa971054e952e261694f705845a"}, - {file = "fastecdsa-2.3.0-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:fd61e461389a4fc1e965a1bbd5efb77588a0ebae2328aecdf011a5e9d439ce66"}, - {file = "fastecdsa-2.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:b0a4637e99cc22b5107d32ae001c2e36a5821c7a50ac001b806d64c157bf62c0"}, - {file = "fastecdsa-2.3.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:7b91663b36137454299d7487a7a1b4a345120bd098ab5f7d7b0a02b50d6c9706"}, - {file = "fastecdsa-2.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:e45be9bcd063362576f93b344e032c743572c2a9ca7426eea3e4035ba21b1654"}, - {file = "fastecdsa-2.3.0.tar.gz", hash = "sha256:6c59aba650862a59f601ff7f66cd6712f4798ae68907c953d58417a5887103de"}, -] - -[[package]] -name = "fire" -version = "0.4.0" -description = "A library for automatically generating command line interfaces." -optional = false -python-versions = "*" -files = [ - {file = "fire-0.4.0.tar.gz", hash = "sha256:c5e2b8763699d1142393a46d0e3e790c5eb2f0706082df8f647878842c216a62"}, -] - -[package.dependencies] -six = "*" -termcolor = "*" - -[[package]] -name = "flask" -version = "2.0.3" -description = "A simple framework for building complex web applications." -optional = false -python-versions = ">=3.6" -files = [ - {file = "Flask-2.0.3-py3-none-any.whl", hash = "sha256:59da8a3170004800a2837844bfa84d49b022550616070f7cb1a659682b2e7c9f"}, - {file = "Flask-2.0.3.tar.gz", hash = "sha256:e1120c228ca2f553b470df4a5fa927ab66258467526069981b3eb0a91902687d"}, -] - -[package.dependencies] -asgiref = {version = ">=3.2", optional = true, markers = "extra == \"async\""} -click = ">=7.1.2" -itsdangerous = ">=2.0" -Jinja2 = ">=3.0" -Werkzeug = ">=2.0" - -[package.extras] -async = ["asgiref (>=3.2)"] -dotenv = ["python-dotenv"] - -[[package]] -name = "flask-cors" -version = "3.0.10" -description = "A Flask extension adding a decorator for CORS support" -optional = false -python-versions = "*" -files = [ - {file = "Flask-Cors-3.0.10.tar.gz", hash = "sha256:b60839393f3b84a0f3746f6cdca56c1ad7426aa738b70d6c61375857823181de"}, - {file = "Flask_Cors-3.0.10-py2.py3-none-any.whl", hash = "sha256:74efc975af1194fc7891ff5cd85b0f7478be4f7f59fe158102e91abb72bb4438"}, -] - -[package.dependencies] -Flask = ">=0.9" -Six = "*" - -[[package]] -name = "frozendict" -version = "2.3.8" -description = "A simple immutable dictionary" -optional = false -python-versions = ">=3.6" -files = [ - {file = "frozendict-2.3.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d188d062084fba0e4bf32719ff7380b26c050b932ff164043ce82ab90587c52b"}, - {file = "frozendict-2.3.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f2a4e818ac457f6354401dcb631527af25e5a20fcfc81e6b5054b45fc245caca"}, - {file = "frozendict-2.3.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a506d807858fa961aaa5b48dab6154fdc6bd045bbe9310788bbff141bb42d13"}, - {file = "frozendict-2.3.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:750632cc890d8ee9484fe6d31b261159144b6efacc08e1317fe46accd1410373"}, - {file = "frozendict-2.3.8-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7ee5fe2658a8ac9a57f748acaf563f6a47f80b8308cbf0a04fac0ba057d41f75"}, - {file = "frozendict-2.3.8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23c4bb46e6b8246e1e7e49b5593c2bc09221db0d8f31f7c092be8dfb42b9e620"}, - {file = "frozendict-2.3.8-cp310-cp310-win_amd64.whl", hash = "sha256:c31abc8acea309b132dde441856829f6003a3d242da8b54bce4c0f2a3c8c63f0"}, - {file = "frozendict-2.3.8-cp310-cp310-win_arm64.whl", hash = "sha256:9ea5520e85447ff8d4681e181941e482662817ccba921b7cb3f87922056d892a"}, - {file = "frozendict-2.3.8-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f83fed36497af9562ead5e9fb8443224ba2781786bd3b92b1087cb7d0ff20135"}, - {file = "frozendict-2.3.8-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e27c5c1d29d0eda7979253ec88abc239da1313b38f39f4b16984db3b3e482300"}, - {file = "frozendict-2.3.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4c785de7f1a13f15963945f400656b18f057c2fc76c089dacf127a2bb188c03"}, - {file = "frozendict-2.3.8-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:8cf35ddd25513428ec152614def9696afb93ae5ec0eb54fa6aa6206eda77ac4c"}, - {file = "frozendict-2.3.8-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:ffc684773de7c88724788fa9787d0016fd75830412d58acbd9ed1a04762c675b"}, - {file = "frozendict-2.3.8-cp36-cp36m-win_amd64.whl", hash = "sha256:4c258aab9c8488338634f2ec670ef049dbf0ab0e7a2fa9bc2c7b5009cb614801"}, - {file = "frozendict-2.3.8-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:47fc26468407fdeb428cfc89495b7921419e670355c21b383765482fdf6c5c14"}, - {file = "frozendict-2.3.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ea638228692db2bf94bce40ea4b25f4077588497b516bd16576575560094bd9"}, - {file = "frozendict-2.3.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a75bf87e76c4386caecdbdd02a99e53ad43a6b5c38fb3d5a634a9fc9ce41462"}, - {file = "frozendict-2.3.8-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ed5a6c5c7a0f57269577c2a338a6002949aea21a23b7b7d06da7e7dced8b605b"}, - {file = "frozendict-2.3.8-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d086440328a465dea9bef2dbad7548d75d1a0a0d21f43a08c03e1ec79ac5240e"}, - {file = "frozendict-2.3.8-cp37-cp37m-win_amd64.whl", hash = "sha256:0bc4767e2f83db5b701c787e22380296977368b0c57e485ca71b2eedfa11c4a3"}, - {file = "frozendict-2.3.8-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:638cf363d3cbca31a341503cf2219eac52a5f5140449676fae3d9644cd3c5487"}, - {file = "frozendict-2.3.8-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2b2fd8ce36277919b36e3c834d2389f3cd7ac068ae730c312671dd4439a5dd65"}, - {file = "frozendict-2.3.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3957d52f1906b0c85f641a1911d214255873f6408ab4e5ad657cc27a247fb145"}, - {file = "frozendict-2.3.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72cfe08ab8ae524e54848fa90b22d02c1b1ecfb3064438696bcaa4b953f18772"}, - {file = "frozendict-2.3.8-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:4742e76c4111bd09198d3ab66cef94be8506212311338f9182d6ef5f5cb60493"}, - {file = "frozendict-2.3.8-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:313ed8d9ba6bac35d7635cd9580ee5721a0fb016f4d2d20f0efa05dbecbdb1be"}, - {file = "frozendict-2.3.8-cp38-cp38-win_amd64.whl", hash = "sha256:d3c6ce943946c2a61501c8cf116fff0892d11dd579877eb36e2aea2c27fddfef"}, - {file = "frozendict-2.3.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f0f573dc4861dd7ec9e055c8cceaf45355e894e749f621f199aab7b311ac4bdb"}, - {file = "frozendict-2.3.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2b3435e5f1ca5ae68a5e95e64b09d6d5c645cadd6b87569a0b3019dd248c8d00"}, - {file = "frozendict-2.3.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:145afd033ebfade28416093335261b8ec1af5cccc593482309e7add062ec8668"}, - {file = "frozendict-2.3.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da98427de26b5a2865727947480cbb53860089c4d195baa29c539da811cea617"}, - {file = "frozendict-2.3.8-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5e82befa7c385a668d569cebbebbdf49cee6fea4083f08e869a1b08cfb640a9f"}, - {file = "frozendict-2.3.8-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:80abe81d36e889ceec665e06ec764a7638000fa3e7be09786ac4d3ddc64b76db"}, - {file = "frozendict-2.3.8-cp39-cp39-win_amd64.whl", hash = "sha256:8ccc94ac781710db44e142e1a11ff9b31d02c032c01c6868d51fcbef73086225"}, - {file = "frozendict-2.3.8-cp39-cp39-win_arm64.whl", hash = "sha256:e72dbc1bcc2203cef38d205f692396f5505921a5680f66aa9a7e8bb71fd38f28"}, - {file = "frozendict-2.3.8-py311-none-any.whl", hash = "sha256:ba41a7ed019bd03b62d63ed3f8dea35b8243d1936f7c9ed4b5298ca45a01928e"}, - {file = "frozendict-2.3.8.tar.gz", hash = "sha256:5526559eca8f1780a4ee5146896f59afc31435313560208dd394a3a5e537d3ff"}, -] - -[[package]] -name = "frozenlist" -version = "1.4.0" -description = "A list-like structure which implements collections.abc.MutableSequence" -optional = false -python-versions = ">=3.8" -files = [ - {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:764226ceef3125e53ea2cb275000e309c0aa5464d43bd72abd661e27fffc26ab"}, - {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d6484756b12f40003c6128bfcc3fa9f0d49a687e171186c2d85ec82e3758c559"}, - {file = "frozenlist-1.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9ac08e601308e41eb533f232dbf6b7e4cea762f9f84f6357136eed926c15d12c"}, - {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d081f13b095d74b67d550de04df1c756831f3b83dc9881c38985834387487f1b"}, - {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:71932b597f9895f011f47f17d6428252fc728ba2ae6024e13c3398a087c2cdea"}, - {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:981b9ab5a0a3178ff413bca62526bb784249421c24ad7381e39d67981be2c326"}, - {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e41f3de4df3e80de75845d3e743b3f1c4c8613c3997a912dbf0229fc61a8b963"}, - {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6918d49b1f90821e93069682c06ffde41829c346c66b721e65a5c62b4bab0300"}, - {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0e5c8764c7829343d919cc2dfc587a8db01c4f70a4ebbc49abde5d4b158b007b"}, - {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8d0edd6b1c7fb94922bf569c9b092ee187a83f03fb1a63076e7774b60f9481a8"}, - {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e29cda763f752553fa14c68fb2195150bfab22b352572cb36c43c47bedba70eb"}, - {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:0c7c1b47859ee2cac3846fde1c1dc0f15da6cec5a0e5c72d101e0f83dcb67ff9"}, - {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:901289d524fdd571be1c7be054f48b1f88ce8dddcbdf1ec698b27d4b8b9e5d62"}, - {file = "frozenlist-1.4.0-cp310-cp310-win32.whl", hash = "sha256:1a0848b52815006ea6596c395f87449f693dc419061cc21e970f139d466dc0a0"}, - {file = "frozenlist-1.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:b206646d176a007466358aa21d85cd8600a415c67c9bd15403336c331a10d956"}, - {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:de343e75f40e972bae1ef6090267f8260c1446a1695e77096db6cfa25e759a95"}, - {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ad2a9eb6d9839ae241701d0918f54c51365a51407fd80f6b8289e2dfca977cc3"}, - {file = "frozenlist-1.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bd7bd3b3830247580de99c99ea2a01416dfc3c34471ca1298bccabf86d0ff4dc"}, - {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bdf1847068c362f16b353163391210269e4f0569a3c166bc6a9f74ccbfc7e839"}, - {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38461d02d66de17455072c9ba981d35f1d2a73024bee7790ac2f9e361ef1cd0c"}, - {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5a32087d720c608f42caed0ef36d2b3ea61a9d09ee59a5142d6070da9041b8f"}, - {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd65632acaf0d47608190a71bfe46b209719bf2beb59507db08ccdbe712f969b"}, - {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261b9f5d17cac914531331ff1b1d452125bf5daa05faf73b71d935485b0c510b"}, - {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b89ac9768b82205936771f8d2eb3ce88503b1556324c9f903e7156669f521472"}, - {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:008eb8b31b3ea6896da16c38c1b136cb9fec9e249e77f6211d479db79a4eaf01"}, - {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e74b0506fa5aa5598ac6a975a12aa8928cbb58e1f5ac8360792ef15de1aa848f"}, - {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:490132667476f6781b4c9458298b0c1cddf237488abd228b0b3650e5ecba7467"}, - {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:76d4711f6f6d08551a7e9ef28c722f4a50dd0fc204c56b4bcd95c6cc05ce6fbb"}, - {file = "frozenlist-1.4.0-cp311-cp311-win32.whl", hash = "sha256:a02eb8ab2b8f200179b5f62b59757685ae9987996ae549ccf30f983f40602431"}, - {file = "frozenlist-1.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:515e1abc578dd3b275d6a5114030b1330ba044ffba03f94091842852f806f1c1"}, - {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f0ed05f5079c708fe74bf9027e95125334b6978bf07fd5ab923e9e55e5fbb9d3"}, - {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ca265542ca427bf97aed183c1676e2a9c66942e822b14dc6e5f42e038f92a503"}, - {file = "frozenlist-1.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:491e014f5c43656da08958808588cc6c016847b4360e327a62cb308c791bd2d9"}, - {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17ae5cd0f333f94f2e03aaf140bb762c64783935cc764ff9c82dff626089bebf"}, - {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e78fb68cf9c1a6aa4a9a12e960a5c9dfbdb89b3695197aa7064705662515de2"}, - {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5655a942f5f5d2c9ed93d72148226d75369b4f6952680211972a33e59b1dfdc"}, - {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c11b0746f5d946fecf750428a95f3e9ebe792c1ee3b1e96eeba145dc631a9672"}, - {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e66d2a64d44d50d2543405fb183a21f76b3b5fd16f130f5c99187c3fb4e64919"}, - {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:88f7bc0fcca81f985f78dd0fa68d2c75abf8272b1f5c323ea4a01a4d7a614efc"}, - {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5833593c25ac59ede40ed4de6d67eb42928cca97f26feea219f21d0ed0959b79"}, - {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:fec520865f42e5c7f050c2a79038897b1c7d1595e907a9e08e3353293ffc948e"}, - {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:b826d97e4276750beca7c8f0f1a4938892697a6bcd8ec8217b3312dad6982781"}, - {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ceb6ec0a10c65540421e20ebd29083c50e6d1143278746a4ef6bcf6153171eb8"}, - {file = "frozenlist-1.4.0-cp38-cp38-win32.whl", hash = "sha256:2b8bcf994563466db019fab287ff390fffbfdb4f905fc77bc1c1d604b1c689cc"}, - {file = "frozenlist-1.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:a6c8097e01886188e5be3e6b14e94ab365f384736aa1fca6a0b9e35bd4a30bc7"}, - {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6c38721585f285203e4b4132a352eb3daa19121a035f3182e08e437cface44bf"}, - {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a0c6da9aee33ff0b1a451e867da0c1f47408112b3391dd43133838339e410963"}, - {file = "frozenlist-1.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93ea75c050c5bb3d98016b4ba2497851eadf0ac154d88a67d7a6816206f6fa7f"}, - {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f61e2dc5ad442c52b4887f1fdc112f97caeff4d9e6ebe78879364ac59f1663e1"}, - {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa384489fefeb62321b238e64c07ef48398fe80f9e1e6afeff22e140e0850eef"}, - {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10ff5faaa22786315ef57097a279b833ecab1a0bfb07d604c9cbb1c4cdc2ed87"}, - {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:007df07a6e3eb3e33e9a1fe6a9db7af152bbd8a185f9aaa6ece10a3529e3e1c6"}, - {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f4f399d28478d1f604c2ff9119907af9726aed73680e5ed1ca634d377abb087"}, - {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5374b80521d3d3f2ec5572e05adc94601985cc526fb276d0c8574a6d749f1b3"}, - {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ce31ae3e19f3c902de379cf1323d90c649425b86de7bbdf82871b8a2a0615f3d"}, - {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7211ef110a9194b6042449431e08c4d80c0481e5891e58d429df5899690511c2"}, - {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:556de4430ce324c836789fa4560ca62d1591d2538b8ceb0b4f68fb7b2384a27a"}, - {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7645a8e814a3ee34a89c4a372011dcd817964ce8cb273c8ed6119d706e9613e3"}, - {file = "frozenlist-1.4.0-cp39-cp39-win32.whl", hash = "sha256:19488c57c12d4e8095a922f328df3f179c820c212940a498623ed39160bc3c2f"}, - {file = "frozenlist-1.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:6221d84d463fb110bdd7619b69cb43878a11d51cbb9394ae3105d082d5199167"}, - {file = "frozenlist-1.4.0.tar.gz", hash = "sha256:09163bdf0b2907454042edb19f887c6d33806adc71fbd54afc14908bfdc22251"}, -] - -[[package]] -name = "gprof2dot" -version = "2022.7.29" -description = "Generate a dot graph from the output of several profilers." -optional = false -python-versions = ">=2.7" -files = [ - {file = "gprof2dot-2022.7.29-py2.py3-none-any.whl", hash = "sha256:f165b3851d3c52ee4915eb1bd6cca571e5759823c2cd0f71a79bda93c2dc85d6"}, - {file = "gprof2dot-2022.7.29.tar.gz", hash = "sha256:45b4d298bd36608fccf9511c3fd88a773f7a1abc04d6cd39445b11ba43133ec5"}, -] - -[[package]] -name = "gunicorn" -version = "20.1.0" -description = "WSGI HTTP Server for UNIX" -optional = false -python-versions = ">=3.5" -files = [ - {file = "gunicorn-20.1.0-py3-none-any.whl", hash = "sha256:9dcc4547dbb1cb284accfb15ab5667a0e5d1881cc443e0677b4882a4067a807e"}, - {file = "gunicorn-20.1.0.tar.gz", hash = "sha256:e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8"}, -] - -[package.dependencies] -setuptools = ">=3.0" - -[package.extras] -eventlet = ["eventlet (>=0.24.1)"] -gevent = ["gevent (>=1.4.0)"] -setproctitle = ["setproctitle"] -tornado = ["tornado (>=0.2)"] - -[[package]] -name = "hexbytes" -version = "0.3.1" -description = "hexbytes: Python `bytes` subclass that decodes hex, with a readable console output" -optional = false -python-versions = ">=3.7, <4" -files = [ - {file = "hexbytes-0.3.1-py3-none-any.whl", hash = "sha256:383595ad75026cf00abd570f44b368c6cdac0c6becfae5c39ff88829877f8a59"}, - {file = "hexbytes-0.3.1.tar.gz", hash = "sha256:a3fe35c6831ee8fafd048c4c086b986075fc14fd46258fa24ecb8d65745f9a9d"}, -] - -[package.extras] -dev = ["black (>=22)", "bumpversion (>=0.5.3)", "eth-utils (>=1.0.1,<3)", "flake8 (==6.0.0)", "flake8-bugbear (==23.3.23)", "hypothesis (>=3.44.24,<=6.31.6)", "ipython", "isort (>=5.10.1)", "mypy (==0.971)", "pydocstyle (>=5.0.0)", "pytest (>=7.0.0)", "pytest-watch (>=4.1.0)", "pytest-xdist (>=2.4.0)", "sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "wheel"] -doc = ["sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)"] -lint = ["black (>=22)", "flake8 (==6.0.0)", "flake8-bugbear (==23.3.23)", "isort (>=5.10.1)", "mypy (==0.971)", "pydocstyle (>=5.0.0)"] -test = ["eth-utils (>=1.0.1,<3)", "hypothesis (>=3.44.24,<=6.31.6)", "pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)"] - -[[package]] -name = "idna" -version = "3.4" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.5" -files = [ - {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, - {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, -] - -[[package]] -name = "importlib-metadata" -version = "6.8.0" -description = "Read metadata from Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "importlib_metadata-6.8.0-py3-none-any.whl", hash = "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb"}, - {file = "importlib_metadata-6.8.0.tar.gz", hash = "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743"}, -] - -[package.dependencies] -zipp = ">=0.5" - -[package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -perf = ["ipython"] -testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)", "pytest-ruff"] - -[[package]] -name = "iniconfig" -version = "2.0.0" -description = "brain-dead simple config-ini parsing" -optional = false -python-versions = ">=3.7" -files = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] - -[[package]] -name = "itsdangerous" -version = "2.1.2" -description = "Safely pass data to untrusted environments and back." -optional = false -python-versions = ">=3.7" -files = [ - {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, - {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, -] - -[[package]] -name = "jinja2" -version = "3.1.2" -description = "A very fast and expressive template engine." -optional = false -python-versions = ">=3.7" -files = [ - {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, - {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, -] - -[package.dependencies] -MarkupSafe = ">=2.0" - -[package.extras] -i18n = ["Babel (>=2.7)"] - -[[package]] -name = "jsonschema" -version = "4.17.3" -description = "An implementation of JSON Schema validation for Python" -optional = false -python-versions = ">=3.7" -files = [ - {file = "jsonschema-4.17.3-py3-none-any.whl", hash = "sha256:a870ad254da1a8ca84b6a2905cac29d265f805acc57af304784962a2aa6508f6"}, - {file = "jsonschema-4.17.3.tar.gz", hash = "sha256:0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d"}, -] - -[package.dependencies] -attrs = ">=17.4.0" -pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" - -[package.extras] -format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] -format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] - -[[package]] -name = "lark" -version = "1.1.7" -description = "a modern parsing library" -optional = false -python-versions = ">=3.6" -files = [ - {file = "lark-1.1.7-py3-none-any.whl", hash = "sha256:9e5dc5bbf93fa1840083707285262514a0ef8a6613874af7ea1cec60468d6e92"}, - {file = "lark-1.1.7.tar.gz", hash = "sha256:be7437bf1f37ab08b355f29ff2571d77d777113d0a8c4352b0c513dced6c5a1e"}, -] - -[package.extras] -atomic-cache = ["atomicwrites"] -interegular = ["interegular (>=0.3.1,<0.4.0)"] -nearley = ["js2py"] -regex = ["regex"] - -[[package]] -name = "lru-dict" -version = "1.2.0" -description = "An Dict like LRU container." -optional = false -python-versions = "*" -files = [ - {file = "lru-dict-1.2.0.tar.gz", hash = "sha256:13c56782f19d68ddf4d8db0170041192859616514c706b126d0df2ec72a11bd7"}, - {file = "lru_dict-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:de906e5486b5c053d15b7731583c25e3c9147c288ac8152a6d1f9bccdec72641"}, - {file = "lru_dict-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:604d07c7604b20b3130405d137cae61579578b0e8377daae4125098feebcb970"}, - {file = "lru_dict-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:203b3e78d03d88f491fa134f85a42919020686b6e6f2d09759b2f5517260c651"}, - {file = "lru_dict-1.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:020b93870f8c7195774cbd94f033b96c14f51c57537969965c3af300331724fe"}, - {file = "lru_dict-1.2.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1184d91cfebd5d1e659d47f17a60185bbf621635ca56dcdc46c6a1745d25df5c"}, - {file = "lru_dict-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:fc42882b554a86e564e0b662da47b8a4b32fa966920bd165e27bb8079a323bc1"}, - {file = "lru_dict-1.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:18ee88ada65bd2ffd483023be0fa1c0a6a051ef666d1cd89e921dcce134149f2"}, - {file = "lru_dict-1.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:756230c22257597b7557eaef7f90484c489e9ba78e5bb6ab5a5bcfb6b03cb075"}, - {file = "lru_dict-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c4da599af36618881748b5db457d937955bb2b4800db891647d46767d636c408"}, - {file = "lru_dict-1.2.0-cp310-cp310-win32.whl", hash = "sha256:35a142a7d1a4fd5d5799cc4f8ab2fff50a598d8cee1d1c611f50722b3e27874f"}, - {file = "lru_dict-1.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:6da5b8099766c4da3bf1ed6e7d7f5eff1681aff6b5987d1258a13bd2ed54f0c9"}, - {file = "lru_dict-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b20b7c9beb481e92e07368ebfaa363ed7ef61e65ffe6e0edbdbaceb33e134124"}, - {file = "lru_dict-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22147367b296be31cc858bf167c448af02435cac44806b228c9be8117f1bfce4"}, - {file = "lru_dict-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:34a3091abeb95e707f381a8b5b7dc8e4ee016316c659c49b726857b0d6d1bd7a"}, - {file = "lru_dict-1.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:877801a20f05c467126b55338a4e9fa30e2a141eb7b0b740794571b7d619ee11"}, - {file = "lru_dict-1.2.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d3336e901acec897bcd318c42c2b93d5f1d038e67688f497045fc6bad2c0be7"}, - {file = "lru_dict-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8dafc481d2defb381f19b22cc51837e8a42631e98e34b9e0892245cc96593deb"}, - {file = "lru_dict-1.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:87bbad3f5c3de8897b8c1263a9af73bbb6469fb90e7b57225dad89b8ef62cd8d"}, - {file = "lru_dict-1.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:25f9e0bc2fe8f41c2711ccefd2871f8a5f50a39e6293b68c3dec576112937aad"}, - {file = "lru_dict-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ae301c282a499dc1968dd633cfef8771dd84228ae9d40002a3ea990e4ff0c469"}, - {file = "lru_dict-1.2.0-cp311-cp311-win32.whl", hash = "sha256:c9617583173a29048e11397f165501edc5ae223504a404b2532a212a71ecc9ed"}, - {file = "lru_dict-1.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:6b7a031e47421d4b7aa626b8c91c180a9f037f89e5d0a71c4bb7afcf4036c774"}, - {file = "lru_dict-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:ea2ac3f7a7a2f32f194c84d82a034e66780057fd908b421becd2f173504d040e"}, - {file = "lru_dict-1.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cd46c94966f631a81ffe33eee928db58e9fbee15baba5923d284aeadc0e0fa76"}, - {file = "lru_dict-1.2.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:086ce993414f0b28530ded7e004c77dc57c5748fa6da488602aa6e7f79e6210e"}, - {file = "lru_dict-1.2.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:df25a426446197488a6702954dcc1de511deee20c9db730499a2aa83fddf0df1"}, - {file = "lru_dict-1.2.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c53b12b89bd7a6c79f0536ff0d0a84fdf4ab5f6252d94b24b9b753bd9ada2ddf"}, - {file = "lru_dict-1.2.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:f9484016e6765bd295708cccc9def49f708ce07ac003808f69efa386633affb9"}, - {file = "lru_dict-1.2.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:d0f7ec902a0097ac39f1922c89be9eaccf00eb87751e28915320b4f72912d057"}, - {file = "lru_dict-1.2.0-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:981ef3edc82da38d39eb60eae225b88a538d47b90cce2e5808846fd2cf64384b"}, - {file = "lru_dict-1.2.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:e25b2e90a032dc248213af7f3f3e975e1934b204f3b16aeeaeaff27a3b65e128"}, - {file = "lru_dict-1.2.0-cp36-cp36m-win32.whl", hash = "sha256:59f3df78e94e07959f17764e7fa7ca6b54e9296953d2626a112eab08e1beb2db"}, - {file = "lru_dict-1.2.0-cp36-cp36m-win_amd64.whl", hash = "sha256:de24b47159e07833aeab517d9cb1c3c5c2d6445cc378b1c2f1d8d15fb4841d63"}, - {file = "lru_dict-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:d0dd4cd58220351233002f910e35cc01d30337696b55c6578f71318b137770f9"}, - {file = "lru_dict-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a87bdc291718bbdf9ea4be12ae7af26cbf0706fa62c2ac332748e3116c5510a7"}, - {file = "lru_dict-1.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:05fb8744f91f58479cbe07ed80ada6696ec7df21ea1740891d4107a8dd99a970"}, - {file = "lru_dict-1.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:00f6e8a3fc91481b40395316a14c94daa0f0a5de62e7e01a7d589f8d29224052"}, - {file = "lru_dict-1.2.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5b172fce0a0ffc0fa6d282c14256d5a68b5db1e64719c2915e69084c4b6bf555"}, - {file = "lru_dict-1.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:e707d93bae8f0a14e6df1ae8b0f076532b35f00e691995f33132d806a88e5c18"}, - {file = "lru_dict-1.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b9ec7a4a0d6b8297102aa56758434fb1fca276a82ed7362e37817407185c3abb"}, - {file = "lru_dict-1.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:f404dcc8172da1f28da9b1f0087009578e608a4899b96d244925c4f463201f2a"}, - {file = "lru_dict-1.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:1171ad3bff32aa8086778be4a3bdff595cc2692e78685bcce9cb06b96b22dcc2"}, - {file = "lru_dict-1.2.0-cp37-cp37m-win32.whl", hash = "sha256:0c316dfa3897fabaa1fe08aae89352a3b109e5f88b25529bc01e98ac029bf878"}, - {file = "lru_dict-1.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:5919dd04446bc1ee8d6ecda2187deeebfff5903538ae71083e069bc678599446"}, - {file = "lru_dict-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:fbf36c5a220a85187cacc1fcb7dd87070e04b5fc28df7a43f6842f7c8224a388"}, - {file = "lru_dict-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:712e71b64da181e1c0a2eaa76cd860265980cd15cb0e0498602b8aa35d5db9f8"}, - {file = "lru_dict-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f54908bf91280a9b8fa6a8c8f3c2f65850ce6acae2852bbe292391628ebca42f"}, - {file = "lru_dict-1.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3838e33710935da2ade1dd404a8b936d571e29268a70ff4ca5ba758abb3850df"}, - {file = "lru_dict-1.2.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5d5a5f976b39af73324f2b793862859902ccb9542621856d51a5993064f25e4"}, - {file = "lru_dict-1.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8bda3a9afd241ee0181661decaae25e5336ce513ac268ab57da737eacaa7871f"}, - {file = "lru_dict-1.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:bd2cd1b998ea4c8c1dad829fc4fa88aeed4dee555b5e03c132fc618e6123f168"}, - {file = "lru_dict-1.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:b55753ee23028ba8644fd22e50de7b8f85fa60b562a0fafaad788701d6131ff8"}, - {file = "lru_dict-1.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:7e51fa6a203fa91d415f3b2900e5748ec8e06ad75777c98cc3aeb3983ca416d7"}, - {file = "lru_dict-1.2.0-cp38-cp38-win32.whl", hash = "sha256:cd6806313606559e6c7adfa0dbeb30fc5ab625f00958c3d93f84831e7a32b71e"}, - {file = "lru_dict-1.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:5d90a70c53b0566084447c3ef9374cc5a9be886e867b36f89495f211baabd322"}, - {file = "lru_dict-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a3ea7571b6bf2090a85ff037e6593bbafe1a8598d5c3b4560eb56187bcccb4dc"}, - {file = "lru_dict-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:287c2115a59c1c9ed0d5d8ae7671e594b1206c36ea9df2fca6b17b86c468ff99"}, - {file = "lru_dict-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5ccfd2291c93746a286c87c3f895165b697399969d24c54804ec3ec559d4e43"}, - {file = "lru_dict-1.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b710f0f4d7ec4f9fa89dfde7002f80bcd77de8024017e70706b0911ea086e2ef"}, - {file = "lru_dict-1.2.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5345bf50e127bd2767e9fd42393635bbc0146eac01f6baf6ef12c332d1a6a329"}, - {file = "lru_dict-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:291d13f85224551913a78fe695cde04cbca9dcb1d84c540167c443eb913603c9"}, - {file = "lru_dict-1.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:d5bb41bc74b321789803d45b124fc2145c1b3353b4ad43296d9d1d242574969b"}, - {file = "lru_dict-1.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0facf49b053bf4926d92d8d5a46fe07eecd2af0441add0182c7432d53d6da667"}, - {file = "lru_dict-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:987b73a06bcf5a95d7dc296241c6b1f9bc6cda42586948c9dabf386dc2bef1cd"}, - {file = "lru_dict-1.2.0-cp39-cp39-win32.whl", hash = "sha256:231d7608f029dda42f9610e5723614a35b1fff035a8060cf7d2be19f1711ace8"}, - {file = "lru_dict-1.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:71da89e134747e20ed5b8ad5b4ee93fc5b31022c2b71e8176e73c5a44699061b"}, - {file = "lru_dict-1.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:21b3090928c7b6cec509e755cc3ab742154b33660a9b433923bd12c37c448e3e"}, - {file = "lru_dict-1.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaecd7085212d0aa4cd855f38b9d61803d6509731138bf798a9594745953245b"}, - {file = "lru_dict-1.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ead83ac59a29d6439ddff46e205ce32f8b7f71a6bd8062347f77e232825e3d0a"}, - {file = "lru_dict-1.2.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:312b6b2a30188586fe71358f0f33e4bac882d33f5e5019b26f084363f42f986f"}, - {file = "lru_dict-1.2.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:b30122e098c80e36d0117810d46459a46313421ce3298709170b687dc1240b02"}, - {file = "lru_dict-1.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:f010cfad3ab10676e44dc72a813c968cd586f37b466d27cde73d1f7f1ba158c2"}, - {file = "lru_dict-1.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20f5f411f7751ad9a2c02e80287cedf69ae032edd321fe696e310d32dd30a1f8"}, - {file = "lru_dict-1.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:afdadd73304c9befaed02eb42f5f09fdc16288de0a08b32b8080f0f0f6350aa6"}, - {file = "lru_dict-1.2.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7ab0c10c4fa99dc9e26b04e6b62ac32d2bcaea3aad9b81ec8ce9a7aa32b7b1b"}, - {file = "lru_dict-1.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:edad398d5d402c43d2adada390dd83c74e46e020945ff4df801166047013617e"}, - {file = "lru_dict-1.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:91d577a11b84387013815b1ad0bb6e604558d646003b44c92b3ddf886ad0f879"}, - {file = "lru_dict-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb12f19cdf9c4f2d9aa259562e19b188ff34afab28dd9509ff32a3f1c2c29326"}, - {file = "lru_dict-1.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e4c85aa8844bdca3c8abac3b7f78da1531c74e9f8b3e4890c6e6d86a5a3f6c0"}, - {file = "lru_dict-1.2.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c6acbd097b15bead4de8e83e8a1030bb4d8257723669097eac643a301a952f0"}, - {file = "lru_dict-1.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:b6613daa851745dd22b860651de930275be9d3e9373283a2164992abacb75b62"}, -] - -[package.extras] -test = ["pytest"] - -[[package]] -name = "markupsafe" -version = "2.1.3" -description = "Safely add untrusted strings to HTML/XML markup." -optional = false -python-versions = ">=3.7" -files = [ - {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, - {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, - {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, - {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, - {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, - {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, - {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, -] - -[[package]] -name = "marshmallow" -version = "3.17.1" -description = "A lightweight library for converting complex datatypes to and from native Python datatypes." -optional = false -python-versions = ">=3.7" -files = [ - {file = "marshmallow-3.17.1-py3-none-any.whl", hash = "sha256:1172ce82765bf26c24a3f9299ed6dbeeca4d213f638eaa39a37772656d7ce408"}, - {file = "marshmallow-3.17.1.tar.gz", hash = "sha256:48e2d88d4ab431ad5a17c25556d9da529ea6e966876f2a38d274082e270287f0"}, -] - -[package.dependencies] -packaging = ">=17.0" - -[package.extras] -dev = ["flake8 (==5.0.4)", "flake8-bugbear (==22.8.22)", "mypy (==0.971)", "pre-commit (>=2.4,<3.0)", "pytest", "pytz", "simplejson", "tox"] -docs = ["alabaster (==0.7.12)", "autodocsumm (==0.2.9)", "sphinx (==5.1.1)", "sphinx-issues (==3.0.1)", "sphinx-version-warning (==1.1.2)"] -lint = ["flake8 (==5.0.4)", "flake8-bugbear (==22.8.22)", "mypy (==0.971)", "pre-commit (>=2.4,<3.0)"] -tests = ["pytest", "pytz", "simplejson"] - -[[package]] -name = "marshmallow-dataclass" -version = "8.4.2" -description = "Python library to convert dataclasses into marshmallow schemas." -optional = false -python-versions = ">=3.6" -files = [ - {file = "marshmallow_dataclass-8.4.2-py3-none-any.whl", hash = "sha256:f3b39bfb9da25f46f12f118b067f9eebc754472d76259b525e561e429337530f"}, - {file = "marshmallow_dataclass-8.4.2.tar.gz", hash = "sha256:2948a0e1ffbec5ecc41242ec194216be99264cbb23ee117c90b97bfbbe7d0566"}, -] - -[package.dependencies] -marshmallow = ">=3.0.0,<4.0" -typing-inspect = ">=0.7.1" - -[package.extras] -dev = ["marshmallow-enum", "pre-commit (>=1.18,<2.0)", "pytest (>=5.4)", "pytest-mypy-plugins (>=1.2.0)", "sphinx", "typeguard", "typing-extensions (>=3.7.2,<3.8.0)"] -docs = ["sphinx"] -enum = ["marshmallow-enum"] -lint = ["pre-commit (>=1.18,<2.0)"] -tests = ["pytest (>=5.4)", "pytest-mypy-plugins (>=1.2.0)", "typing-extensions (>=3.7.2,<3.8.0)"] -union = ["typeguard"] - -[[package]] -name = "marshmallow-enum" -version = "1.5.1" -description = "Enum field for Marshmallow" -optional = false -python-versions = "*" -files = [ - {file = "marshmallow-enum-1.5.1.tar.gz", hash = "sha256:38e697e11f45a8e64b4a1e664000897c659b60aa57bfa18d44e226a9920b6e58"}, - {file = "marshmallow_enum-1.5.1-py2.py3-none-any.whl", hash = "sha256:57161ab3dbfde4f57adeb12090f39592e992b9c86d206d02f6bd03ebec60f072"}, -] - -[package.dependencies] -marshmallow = ">=2.0.0" - -[[package]] -name = "marshmallow-oneofschema" -version = "3.0.1" -description = "marshmallow multiplexing schema" -optional = false -python-versions = ">=3.6" -files = [ - {file = "marshmallow-oneofschema-3.0.1.tar.gz", hash = "sha256:62cd2099b29188c92493c2940ee79d1bf2f2619a71721664e5a98ec2faa58237"}, - {file = "marshmallow_oneofschema-3.0.1-py2.py3-none-any.whl", hash = "sha256:bd29410a9f2f7457a2b428286e2a80ef76b8ddc3701527dc1f935a88914b02f2"}, -] - -[package.dependencies] -marshmallow = ">=3.0.0,<4.0.0" - -[package.extras] -dev = ["flake8 (==3.9.2)", "flake8-bugbear (==21.4.3)", "mock", "pre-commit (>=2.7,<3.0)", "pytest", "tox"] -lint = ["flake8 (==3.9.2)", "flake8-bugbear (==21.4.3)", "pre-commit (>=2.7,<3.0)"] -tests = ["mock", "pytest"] - -[[package]] -name = "mpmath" -version = "1.3.0" -description = "Python library for arbitrary-precision floating-point arithmetic" -optional = false -python-versions = "*" -files = [ - {file = "mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c"}, - {file = "mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f"}, -] - -[package.extras] -develop = ["codecov", "pycodestyle", "pytest (>=4.6)", "pytest-cov", "wheel"] -docs = ["sphinx"] -gmpy = ["gmpy2 (>=2.1.0a4)"] -tests = ["pytest (>=4.6)"] - -[[package]] -name = "multidict" -version = "6.0.4" -description = "multidict implementation" -optional = false -python-versions = ">=3.7" -files = [ - {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1a97283e0c85772d613878028fec909f003993e1007eafa715b24b377cb9b8"}, - {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eeb6dcc05e911516ae3d1f207d4b0520d07f54484c49dfc294d6e7d63b734171"}, - {file = "multidict-6.0.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d6d635d5209b82a3492508cf5b365f3446afb65ae7ebd755e70e18f287b0adf7"}, - {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c048099e4c9e9d615545e2001d3d8a4380bd403e1a0578734e0d31703d1b0c0b"}, - {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea20853c6dbbb53ed34cb4d080382169b6f4554d394015f1bef35e881bf83547"}, - {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:16d232d4e5396c2efbbf4f6d4df89bfa905eb0d4dc5b3549d872ab898451f569"}, - {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36c63aaa167f6c6b04ef2c85704e93af16c11d20de1d133e39de6a0e84582a93"}, - {file = "multidict-6.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:64bdf1086b6043bf519869678f5f2757f473dee970d7abf6da91ec00acb9cb98"}, - {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:43644e38f42e3af682690876cff722d301ac585c5b9e1eacc013b7a3f7b696a0"}, - {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7582a1d1030e15422262de9f58711774e02fa80df0d1578995c76214f6954988"}, - {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:ddff9c4e225a63a5afab9dd15590432c22e8057e1a9a13d28ed128ecf047bbdc"}, - {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:ee2a1ece51b9b9e7752e742cfb661d2a29e7bcdba2d27e66e28a99f1890e4fa0"}, - {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a2e4369eb3d47d2034032a26c7a80fcb21a2cb22e1173d761a162f11e562caa5"}, - {file = "multidict-6.0.4-cp310-cp310-win32.whl", hash = "sha256:574b7eae1ab267e5f8285f0fe881f17efe4b98c39a40858247720935b893bba8"}, - {file = "multidict-6.0.4-cp310-cp310-win_amd64.whl", hash = "sha256:4dcbb0906e38440fa3e325df2359ac6cb043df8e58c965bb45f4e406ecb162cc"}, - {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0dfad7a5a1e39c53ed00d2dd0c2e36aed4650936dc18fd9a1826a5ae1cad6f03"}, - {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:64da238a09d6039e3bd39bb3aee9c21a5e34f28bfa5aa22518581f910ff94af3"}, - {file = "multidict-6.0.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff959bee35038c4624250473988b24f846cbeb2c6639de3602c073f10410ceba"}, - {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01a3a55bd90018c9c080fbb0b9f4891db37d148a0a18722b42f94694f8b6d4c9"}, - {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c5cb09abb18c1ea940fb99360ea0396f34d46566f157122c92dfa069d3e0e982"}, - {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:666daae833559deb2d609afa4490b85830ab0dfca811a98b70a205621a6109fe"}, - {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11bdf3f5e1518b24530b8241529d2050014c884cf18b6fc69c0c2b30ca248710"}, - {file = "multidict-6.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d18748f2d30f94f498e852c67d61261c643b349b9d2a581131725595c45ec6c"}, - {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:458f37be2d9e4c95e2d8866a851663cbc76e865b78395090786f6cd9b3bbf4f4"}, - {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b1a2eeedcead3a41694130495593a559a668f382eee0727352b9a41e1c45759a"}, - {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7d6ae9d593ef8641544d6263c7fa6408cc90370c8cb2bbb65f8d43e5b0351d9c"}, - {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5979b5632c3e3534e42ca6ff856bb24b2e3071b37861c2c727ce220d80eee9ed"}, - {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dcfe792765fab89c365123c81046ad4103fcabbc4f56d1c1997e6715e8015461"}, - {file = "multidict-6.0.4-cp311-cp311-win32.whl", hash = "sha256:3601a3cece3819534b11d4efc1eb76047488fddd0c85a3948099d5da4d504636"}, - {file = "multidict-6.0.4-cp311-cp311-win_amd64.whl", hash = "sha256:81a4f0b34bd92df3da93315c6a59034df95866014ac08535fc819f043bfd51f0"}, - {file = "multidict-6.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:67040058f37a2a51ed8ea8f6b0e6ee5bd78ca67f169ce6122f3e2ec80dfe9b78"}, - {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:853888594621e6604c978ce2a0444a1e6e70c8d253ab65ba11657659dcc9100f"}, - {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:39ff62e7d0f26c248b15e364517a72932a611a9b75f35b45be078d81bdb86603"}, - {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:af048912e045a2dc732847d33821a9d84ba553f5c5f028adbd364dd4765092ac"}, - {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e8b901e607795ec06c9e42530788c45ac21ef3aaa11dbd0c69de543bfb79a9"}, - {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62501642008a8b9871ddfccbf83e4222cf8ac0d5aeedf73da36153ef2ec222d2"}, - {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:99b76c052e9f1bc0721f7541e5e8c05db3941eb9ebe7b8553c625ef88d6eefde"}, - {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:509eac6cf09c794aa27bcacfd4d62c885cce62bef7b2c3e8b2e49d365b5003fe"}, - {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:21a12c4eb6ddc9952c415f24eef97e3e55ba3af61f67c7bc388dcdec1404a067"}, - {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:5cad9430ab3e2e4fa4a2ef4450f548768400a2ac635841bc2a56a2052cdbeb87"}, - {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ab55edc2e84460694295f401215f4a58597f8f7c9466faec545093045476327d"}, - {file = "multidict-6.0.4-cp37-cp37m-win32.whl", hash = "sha256:5a4dcf02b908c3b8b17a45fb0f15b695bf117a67b76b7ad18b73cf8e92608775"}, - {file = "multidict-6.0.4-cp37-cp37m-win_amd64.whl", hash = "sha256:6ed5f161328b7df384d71b07317f4d8656434e34591f20552c7bcef27b0ab88e"}, - {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5fc1b16f586f049820c5c5b17bb4ee7583092fa0d1c4e28b5239181ff9532e0c"}, - {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1502e24330eb681bdaa3eb70d6358e818e8e8f908a22a1851dfd4e15bc2f8161"}, - {file = "multidict-6.0.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b692f419760c0e65d060959df05f2a531945af31fda0c8a3b3195d4efd06de11"}, - {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45e1ecb0379bfaab5eef059f50115b54571acfbe422a14f668fc8c27ba410e7e"}, - {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddd3915998d93fbcd2566ddf9cf62cdb35c9e093075f862935573d265cf8f65d"}, - {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:59d43b61c59d82f2effb39a93c48b845efe23a3852d201ed2d24ba830d0b4cf2"}, - {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc8e1d0c705233c5dd0c5e6460fbad7827d5d36f310a0fadfd45cc3029762258"}, - {file = "multidict-6.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6aa0418fcc838522256761b3415822626f866758ee0bc6632c9486b179d0b52"}, - {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6748717bb10339c4760c1e63da040f5f29f5ed6e59d76daee30305894069a660"}, - {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4d1a3d7ef5e96b1c9e92f973e43aa5e5b96c659c9bc3124acbbd81b0b9c8a951"}, - {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4372381634485bec7e46718edc71528024fcdc6f835baefe517b34a33c731d60"}, - {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:fc35cb4676846ef752816d5be2193a1e8367b4c1397b74a565a9d0389c433a1d"}, - {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4b9d9e4e2b37daddb5c23ea33a3417901fa7c7b3dee2d855f63ee67a0b21e5b1"}, - {file = "multidict-6.0.4-cp38-cp38-win32.whl", hash = "sha256:e41b7e2b59679edfa309e8db64fdf22399eec4b0b24694e1b2104fb789207779"}, - {file = "multidict-6.0.4-cp38-cp38-win_amd64.whl", hash = "sha256:d6c254ba6e45d8e72739281ebc46ea5eb5f101234f3ce171f0e9f5cc86991480"}, - {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:16ab77bbeb596e14212e7bab8429f24c1579234a3a462105cda4a66904998664"}, - {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc779e9e6f7fda81b3f9aa58e3a6091d49ad528b11ed19f6621408806204ad35"}, - {file = "multidict-6.0.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4ceef517eca3e03c1cceb22030a3e39cb399ac86bff4e426d4fc6ae49052cc60"}, - {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:281af09f488903fde97923c7744bb001a9b23b039a909460d0f14edc7bf59706"}, - {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52f2dffc8acaba9a2f27174c41c9e57f60b907bb9f096b36b1a1f3be71c6284d"}, - {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b41156839806aecb3641f3208c0dafd3ac7775b9c4c422d82ee2a45c34ba81ca"}, - {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5e3fc56f88cc98ef8139255cf8cd63eb2c586531e43310ff859d6bb3a6b51f1"}, - {file = "multidict-6.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8316a77808c501004802f9beebde51c9f857054a0c871bd6da8280e718444449"}, - {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f70b98cd94886b49d91170ef23ec5c0e8ebb6f242d734ed7ed677b24d50c82cf"}, - {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bf6774e60d67a9efe02b3616fee22441d86fab4c6d335f9d2051d19d90a40063"}, - {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:e69924bfcdda39b722ef4d9aa762b2dd38e4632b3641b1d9a57ca9cd18f2f83a"}, - {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:6b181d8c23da913d4ff585afd1155a0e1194c0b50c54fcfe286f70cdaf2b7176"}, - {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:52509b5be062d9eafc8170e53026fbc54cf3b32759a23d07fd935fb04fc22d95"}, - {file = "multidict-6.0.4-cp39-cp39-win32.whl", hash = "sha256:27c523fbfbdfd19c6867af7346332b62b586eed663887392cff78d614f9ec313"}, - {file = "multidict-6.0.4-cp39-cp39-win_amd64.whl", hash = "sha256:33029f5734336aa0d4c0384525da0387ef89148dc7191aae00ca5fb23d7aafc2"}, - {file = "multidict-6.0.4.tar.gz", hash = "sha256:3666906492efb76453c0e7b97f2cf459b0682e7402c0489a95484965dbc1da49"}, -] - -[[package]] -name = "mypy-extensions" -version = "1.0.0" -description = "Type system extensions for programs checked with the mypy type checker." -optional = false -python-versions = ">=3.5" -files = [ - {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, - {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, -] - -[[package]] -name = "numpy" -version = "1.26.0" -description = "Fundamental package for array computing in Python" -optional = false -python-versions = "<3.13,>=3.9" -files = [ - {file = "numpy-1.26.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f8db2f125746e44dce707dd44d4f4efeea8d7e2b43aace3f8d1f235cfa2733dd"}, - {file = "numpy-1.26.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0621f7daf973d34d18b4e4bafb210bbaf1ef5e0100b5fa750bd9cde84c7ac292"}, - {file = "numpy-1.26.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51be5f8c349fdd1a5568e72713a21f518e7d6707bcf8503b528b88d33b57dc68"}, - {file = "numpy-1.26.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:767254ad364991ccfc4d81b8152912e53e103ec192d1bb4ea6b1f5a7117040be"}, - {file = "numpy-1.26.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:436c8e9a4bdeeee84e3e59614d38c3dbd3235838a877af8c211cfcac8a80b8d3"}, - {file = "numpy-1.26.0-cp310-cp310-win32.whl", hash = "sha256:c2e698cb0c6dda9372ea98a0344245ee65bdc1c9dd939cceed6bb91256837896"}, - {file = "numpy-1.26.0-cp310-cp310-win_amd64.whl", hash = "sha256:09aaee96c2cbdea95de76ecb8a586cb687d281c881f5f17bfc0fb7f5890f6b91"}, - {file = "numpy-1.26.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:637c58b468a69869258b8ae26f4a4c6ff8abffd4a8334c830ffb63e0feefe99a"}, - {file = "numpy-1.26.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:306545e234503a24fe9ae95ebf84d25cba1fdc27db971aa2d9f1ab6bba19a9dd"}, - {file = "numpy-1.26.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c6adc33561bd1d46f81131d5352348350fc23df4d742bb246cdfca606ea1208"}, - {file = "numpy-1.26.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e062aa24638bb5018b7841977c360d2f5917268d125c833a686b7cbabbec496c"}, - {file = "numpy-1.26.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:546b7dd7e22f3c6861463bebb000646fa730e55df5ee4a0224408b5694cc6148"}, - {file = "numpy-1.26.0-cp311-cp311-win32.whl", hash = "sha256:c0b45c8b65b79337dee5134d038346d30e109e9e2e9d43464a2970e5c0e93229"}, - {file = "numpy-1.26.0-cp311-cp311-win_amd64.whl", hash = "sha256:eae430ecf5794cb7ae7fa3808740b015aa80747e5266153128ef055975a72b99"}, - {file = "numpy-1.26.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:166b36197e9debc4e384e9c652ba60c0bacc216d0fc89e78f973a9760b503388"}, - {file = "numpy-1.26.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f042f66d0b4ae6d48e70e28d487376204d3cbf43b84c03bac57e28dac6151581"}, - {file = "numpy-1.26.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5e18e5b14a7560d8acf1c596688f4dfd19b4f2945b245a71e5af4ddb7422feb"}, - {file = "numpy-1.26.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f6bad22a791226d0a5c7c27a80a20e11cfe09ad5ef9084d4d3fc4a299cca505"}, - {file = "numpy-1.26.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4acc65dd65da28060e206c8f27a573455ed724e6179941edb19f97e58161bb69"}, - {file = "numpy-1.26.0-cp312-cp312-win32.whl", hash = "sha256:bb0d9a1aaf5f1cb7967320e80690a1d7ff69f1d47ebc5a9bea013e3a21faec95"}, - {file = "numpy-1.26.0-cp312-cp312-win_amd64.whl", hash = "sha256:ee84ca3c58fe48b8ddafdeb1db87388dce2c3c3f701bf447b05e4cfcc3679112"}, - {file = "numpy-1.26.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4a873a8180479bc829313e8d9798d5234dfacfc2e8a7ac188418189bb8eafbd2"}, - {file = "numpy-1.26.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:914b28d3215e0c721dc75db3ad6d62f51f630cb0c277e6b3bcb39519bed10bd8"}, - {file = "numpy-1.26.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c78a22e95182fb2e7874712433eaa610478a3caf86f28c621708d35fa4fd6e7f"}, - {file = "numpy-1.26.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86f737708b366c36b76e953c46ba5827d8c27b7a8c9d0f471810728e5a2fe57c"}, - {file = "numpy-1.26.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b44e6a09afc12952a7d2a58ca0a2429ee0d49a4f89d83a0a11052da696440e49"}, - {file = "numpy-1.26.0-cp39-cp39-win32.whl", hash = "sha256:5671338034b820c8d58c81ad1dafc0ed5a00771a82fccc71d6438df00302094b"}, - {file = "numpy-1.26.0-cp39-cp39-win_amd64.whl", hash = "sha256:020cdbee66ed46b671429c7265cf00d8ac91c046901c55684954c3958525dab2"}, - {file = "numpy-1.26.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0792824ce2f7ea0c82ed2e4fecc29bb86bee0567a080dacaf2e0a01fe7654369"}, - {file = "numpy-1.26.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d484292eaeb3e84a51432a94f53578689ffdea3f90e10c8b203a99be5af57d8"}, - {file = "numpy-1.26.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:186ba67fad3c60dbe8a3abff3b67a91351100f2661c8e2a80364ae6279720299"}, - {file = "numpy-1.26.0.tar.gz", hash = "sha256:f93fc78fe8bf15afe2b8d6b6499f1c73953169fad1e9a8dd086cdff3190e7fdf"}, -] - -[[package]] -name = "packaging" -version = "23.1" -description = "Core utilities for Python packages" -optional = false -python-versions = ">=3.7" -files = [ - {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, - {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, -] - -[[package]] -name = "parsimonious" -version = "0.9.0" -description = "(Soon to be) the fastest pure-Python PEG parser I could muster" -optional = false -python-versions = "*" -files = [ - {file = "parsimonious-0.9.0.tar.gz", hash = "sha256:b2ad1ae63a2f65bd78f5e0a8ac510a98f3607a43f1db2a8d46636a5d9e4a30c1"}, -] - -[package.dependencies] -regex = ">=2022.3.15" - -[[package]] -name = "pipdeptree" -version = "2.13.0" -description = "Command line utility to show dependency tree of packages." -optional = false -python-versions = ">=3.8" -files = [ - {file = "pipdeptree-2.13.0-py3-none-any.whl", hash = "sha256:70c582224a41f20c4b69be7aaeeed40b59d3f247a93b4d6891b3d772c9befc94"}, - {file = "pipdeptree-2.13.0.tar.gz", hash = "sha256:ff71a48abd0b1ab810c23734b47de6ebd93270857d6665e21ed5ef6136fcba6e"}, -] - -[package.extras] -graphviz = ["graphviz (>=0.20.1)"] -test = ["covdefaults (>=2.3)", "diff-cover (>=7.7)", "pip (>=23.2)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)", "virtualenv (>=20.24,<21)"] - -[[package]] -name = "pluggy" -version = "1.3.0" -description = "plugin and hook calling mechanisms for python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pluggy-1.3.0-py3-none-any.whl", hash = "sha256:d89c696a773f8bd377d18e5ecda92b7a3793cbe66c87060a6fb58c7b6e1061f7"}, - {file = "pluggy-1.3.0.tar.gz", hash = "sha256:cf61ae8f126ac6f7c451172cf30e3e43d3ca77615509771b3a984a0730651e12"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "poseidon-py" -version = "0.1.3" -description = "Python implementation of Poseidon hash" -optional = false -python-versions = ">=3.8" -files = [ - {file = "poseidon_py-0.1.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:7d94630760112012cf5d8f4eac5aa6ac6df5f1b8693fd35fe0cf387d8abf0b0b"}, - {file = "poseidon_py-0.1.3-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:122be0b1ba57f55fd3c9568691fbeeb455e436400d46c91b7cdab1ba6bc3fef6"}, - {file = "poseidon_py-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a81963e658784382c13f2160cd70e8455547740fb198264f351412c33a669b8"}, - {file = "poseidon_py-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:48f7fc559ec059c68761550c62b6908cba0bfe732bbaeb537cf1a2282923aa5b"}, - {file = "poseidon_py-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e9261b3bb0918664818b2a89700394d2c467565200bf5b9d06f6f186657495c7"}, - {file = "poseidon_py-0.1.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:62646ee54acc00e5f57b56f92db398ce17e9d45bbccb39c62e7de9f909c31b03"}, - {file = "poseidon_py-0.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:1f22ebe330b42f8d781c52b5b7dc6fae27857e2cac6dda3f6d7c9f3febb1cc9b"}, - {file = "poseidon_py-0.1.3-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:07b181cecb9a1e96836ab1dee95e927719186444055977853c3d2b73a6f1ea75"}, - {file = "poseidon_py-0.1.3-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:28f7b952d86470bdb24fc4e8577a4b18d78bf902a950fff0f7e6e81a52f184b7"}, - {file = "poseidon_py-0.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:823999e10d02c15daeb75f2005323db296b72c5f89f09e48f637b7321813633d"}, - {file = "poseidon_py-0.1.3-cp310-cp310-win32.whl", hash = "sha256:3a01664c1abbfbdee43d3d5a5a349a9736b22ffc0633816567cd2d3a9562d5c0"}, - {file = "poseidon_py-0.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:5d136fdba6932626f27760462e6071bc9fa7191d82a02c18d31c839236924b2d"}, - {file = "poseidon_py-0.1.3-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:fe2d67b9f71652bdbd677f7f4244b90d8ad3e0f3dfc3b1a8a14ae764b77c7e54"}, - {file = "poseidon_py-0.1.3-cp311-cp311-macosx_12_0_universal2.whl", hash = "sha256:76a590a26a469524e07101f8f7095d1341ecd7b44097840bf51aa2e4864437e8"}, - {file = "poseidon_py-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7a9cb9874107398e9d56ddee77a35936c292a894cb4117af36d9c1e745a3a77"}, - {file = "poseidon_py-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d3893c4f89211ccb378ddae4732ce4faa57a5a5ff604c7de30f0b9bd725dc239"}, - {file = "poseidon_py-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:30e79b32441708051c40f9077e6c11224286b65f42cfde01e4395bdbedea6e96"}, - {file = "poseidon_py-0.1.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4460357881857c8c10c47e9563a038b0e3696ccc69006c54946a59d31ac3e9fa"}, - {file = "poseidon_py-0.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:201128a35e9ad6e2b7f8cbd964e65f816f6449f687356f6064136ac14e97dbc0"}, - {file = "poseidon_py-0.1.3-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:8cd3082a3a79ddbedeb02696b2bcb12422a93f680bfafc5e4680ac1189178740"}, - {file = "poseidon_py-0.1.3-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:6254630f1a8c816b121938191445e26f153cb254d273198f2aa72482970b731e"}, - {file = "poseidon_py-0.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0f1e8e8457ee83d85875f3df5c286f1734e47afac55843edad32fa6435d49ab9"}, - {file = "poseidon_py-0.1.3-cp311-cp311-win32.whl", hash = "sha256:559cf54eab8154fb612bb5a96b749efd55232425f8d9cc3547b4c7dc41cd5e1d"}, - {file = "poseidon_py-0.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:1ee4e2b58ccdab1c5a57330daf3c3af3d3bd4f8fbb5dc8683634661c99bd520e"}, - {file = "poseidon_py-0.1.3-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:1efc471c29495fab20b0e9a8ffc58fc5c98f87e9793e93b62fdfda1b53302deb"}, - {file = "poseidon_py-0.1.3-cp38-cp38-macosx_12_0_universal2.whl", hash = "sha256:f27272d77b768ca9fa62cc481a17bdbd4dfdf7f4af8bcf1e53910f7e9c5497fd"}, - {file = "poseidon_py-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e106607e8e7d52b35669e253555b564d0d5eab85bb148826591fd43c871b41a"}, - {file = "poseidon_py-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:849d51f6ccc8a848f2e3c0b322c4ab67bcc2d68ad82f9d112334511c4160c440"}, - {file = "poseidon_py-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:85aa3bc7795a55b7ea3d7adabe0cf2ef5416eb81457f354fe8a83e285276c697"}, - {file = "poseidon_py-0.1.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c04cf8a082ccce9f26484d51d4bb18441041b544ca429413bc0d931c3173adb"}, - {file = "poseidon_py-0.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f32841ce6e27dc2ca39384c4cd1514ffeae478e58620a6649858c490899238a7"}, - {file = "poseidon_py-0.1.3-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:040aa6d41997fecf5135112c1dd8a5640a5929bf5a786737b50a95feb5a8e40c"}, - {file = "poseidon_py-0.1.3-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3fe4675d25c671a497c7c47cd4f5a22f301b84866b59fe1b4a0768fb10ae4d2b"}, - {file = "poseidon_py-0.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06587d4ee8a6e854b57cc5cddbd03ebfbe62fa761d160d32aa1dafc5de3f785d"}, - {file = "poseidon_py-0.1.3-cp38-cp38-win32.whl", hash = "sha256:bdd3428638e1bccc358dc559ebadd816dcafdaaefcb3ced9b9bb8c07053d203f"}, - {file = "poseidon_py-0.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:277ccda8612fa057100506bb4cbadddb10915f7d643dc44a77b16b90050df7bd"}, - {file = "poseidon_py-0.1.3-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:f289a906fc54e75587ea4754ae7280652b1b1da51b40f82b3fb2e72a5bd8928e"}, - {file = "poseidon_py-0.1.3-cp39-cp39-macosx_12_0_universal2.whl", hash = "sha256:9a0dfb1934e54a02247c872b8bce926e3c6bf998b46cff6b3536d0f32ab0517b"}, - {file = "poseidon_py-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4972047c37ebd86ea96fd13fc762104cb9b3494b5e43bf9bcd3e656d37f2b158"}, - {file = "poseidon_py-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:33471aac5654f36962091dbfca6188862a98ab04efe613b029247260265e4fe6"}, - {file = "poseidon_py-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ee48a829baf3c2c188f121a122a450b45664636931f15fce919ec31b89eca098"}, - {file = "poseidon_py-0.1.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5cc1a103eb9f89c6747926daa27d1b9807451f36212806938dcf73cab2131147"}, - {file = "poseidon_py-0.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:53c688f041e7b83dc2bc348bfa9cdd1a7d628c3b07dcc99525065c5493d9eecf"}, - {file = "poseidon_py-0.1.3-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:041bbcbec7afc149f773f09bdb5f6708690dae96c6ee7a167a7b53e9ca0c09d3"}, - {file = "poseidon_py-0.1.3-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:60cc8b717e8184906b9cedb4bdef205ecbeda7ffcc482aae936fed2cadc98537"}, - {file = "poseidon_py-0.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a99a25ec5b7c25f0603de6d06450b3ebb26f1d02b205bf875d029f52d4cd691f"}, - {file = "poseidon_py-0.1.3-cp39-cp39-win32.whl", hash = "sha256:471b1466c9a4351bf92e7d36781f46d355854e0e7a5d11ee45cde0f07de2ab80"}, - {file = "poseidon_py-0.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:ce5a947360fd6045a9f10461bdea95cec3920a6663bebac0c53e87aee6dc31e7"}, - {file = "poseidon_py-0.1.3.tar.gz", hash = "sha256:37f191fcad7c25deb70480b65a6d8807a0c30b1f828fe598f13780cfa31285c3"}, -] - -[[package]] -name = "prometheus-client" -version = "0.17.1" -description = "Python client for the Prometheus monitoring system." -optional = false -python-versions = ">=3.6" -files = [ - {file = "prometheus_client-0.17.1-py3-none-any.whl", hash = "sha256:e537f37160f6807b8202a6fc4764cdd19bac5480ddd3e0d463c3002b34462101"}, - {file = "prometheus_client-0.17.1.tar.gz", hash = "sha256:21e674f39831ae3f8acde238afd9a27a37d0d2fb5a28ea094f0ce25d2cbf2091"}, -] - -[package.extras] -twisted = ["twisted"] - -[[package]] -name = "protobuf" -version = "4.24.3" -description = "" -optional = false -python-versions = ">=3.7" -files = [ - {file = "protobuf-4.24.3-cp310-abi3-win32.whl", hash = "sha256:20651f11b6adc70c0f29efbe8f4a94a74caf61b6200472a9aea6e19898f9fcf4"}, - {file = "protobuf-4.24.3-cp310-abi3-win_amd64.whl", hash = "sha256:3d42e9e4796a811478c783ef63dc85b5a104b44aaaca85d4864d5b886e4b05e3"}, - {file = "protobuf-4.24.3-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:6e514e8af0045be2b56e56ae1bb14f43ce7ffa0f68b1c793670ccbe2c4fc7d2b"}, - {file = "protobuf-4.24.3-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:ba53c2f04798a326774f0e53b9c759eaef4f6a568ea7072ec6629851c8435959"}, - {file = "protobuf-4.24.3-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:f6ccbcf027761a2978c1406070c3788f6de4a4b2cc20800cc03d52df716ad675"}, - {file = "protobuf-4.24.3-cp37-cp37m-win32.whl", hash = "sha256:1b182c7181a2891e8f7f3a1b5242e4ec54d1f42582485a896e4de81aa17540c2"}, - {file = "protobuf-4.24.3-cp37-cp37m-win_amd64.whl", hash = "sha256:b0271a701e6782880d65a308ba42bc43874dabd1a0a0f41f72d2dac3b57f8e76"}, - {file = "protobuf-4.24.3-cp38-cp38-win32.whl", hash = "sha256:e29d79c913f17a60cf17c626f1041e5288e9885c8579832580209de8b75f2a52"}, - {file = "protobuf-4.24.3-cp38-cp38-win_amd64.whl", hash = "sha256:067f750169bc644da2e1ef18c785e85071b7c296f14ac53e0900e605da588719"}, - {file = "protobuf-4.24.3-cp39-cp39-win32.whl", hash = "sha256:2da777d34b4f4f7613cdf85c70eb9a90b1fbef9d36ae4a0ccfe014b0b07906f1"}, - {file = "protobuf-4.24.3-cp39-cp39-win_amd64.whl", hash = "sha256:f631bb982c5478e0c1c70eab383af74a84be66945ebf5dd6b06fc90079668d0b"}, - {file = "protobuf-4.24.3-py3-none-any.whl", hash = "sha256:f6f8dc65625dadaad0c8545319c2e2f0424fede988368893ca3844261342c11a"}, - {file = "protobuf-4.24.3.tar.gz", hash = "sha256:12e9ad2ec079b833176d2921be2cb24281fa591f0b119b208b788adc48c2561d"}, -] - -[[package]] -name = "pycodestyle" -version = "2.11.0" -description = "Python style guide checker" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pycodestyle-2.11.0-py2.py3-none-any.whl", hash = "sha256:5d1013ba8dc7895b548be5afb05740ca82454fd899971563d2ef625d090326f8"}, - {file = "pycodestyle-2.11.0.tar.gz", hash = "sha256:259bcc17857d8a8b3b4a2327324b79e5f020a13c16074670f9c8c8f872ea76d0"}, -] - -[[package]] -name = "pycryptodome" -version = "3.19.0" -description = "Cryptographic library for Python" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -files = [ - {file = "pycryptodome-3.19.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:3006c44c4946583b6de24fe0632091c2653d6256b99a02a3db71ca06472ea1e4"}, - {file = "pycryptodome-3.19.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:7c760c8a0479a4042111a8dd2f067d3ae4573da286c53f13cf6f5c53a5c1f631"}, - {file = "pycryptodome-3.19.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:08ce3558af5106c632baf6d331d261f02367a6bc3733086ae43c0f988fe042db"}, - {file = "pycryptodome-3.19.0-cp27-cp27m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45430dfaf1f421cf462c0dd824984378bef32b22669f2635cb809357dbaab405"}, - {file = "pycryptodome-3.19.0-cp27-cp27m-musllinux_1_1_aarch64.whl", hash = "sha256:a9bcd5f3794879e91970f2bbd7d899780541d3ff439d8f2112441769c9f2ccea"}, - {file = "pycryptodome-3.19.0-cp27-cp27m-win32.whl", hash = "sha256:190c53f51e988dceb60472baddce3f289fa52b0ec38fbe5fd20dd1d0f795c551"}, - {file = "pycryptodome-3.19.0-cp27-cp27m-win_amd64.whl", hash = "sha256:22e0ae7c3a7f87dcdcf302db06ab76f20e83f09a6993c160b248d58274473bfa"}, - {file = "pycryptodome-3.19.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:7822f36d683f9ad7bc2145b2c2045014afdbbd1d9922a6d4ce1cbd6add79a01e"}, - {file = "pycryptodome-3.19.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:05e33267394aad6db6595c0ce9d427fe21552f5425e116a925455e099fdf759a"}, - {file = "pycryptodome-3.19.0-cp27-cp27mu-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:829b813b8ee00d9c8aba417621b94bc0b5efd18c928923802ad5ba4cf1ec709c"}, - {file = "pycryptodome-3.19.0-cp27-cp27mu-musllinux_1_1_aarch64.whl", hash = "sha256:fc7a79590e2b5d08530175823a242de6790abc73638cc6dc9d2684e7be2f5e49"}, - {file = "pycryptodome-3.19.0-cp35-abi3-macosx_10_9_universal2.whl", hash = "sha256:542f99d5026ac5f0ef391ba0602f3d11beef8e65aae135fa5b762f5ebd9d3bfb"}, - {file = "pycryptodome-3.19.0-cp35-abi3-macosx_10_9_x86_64.whl", hash = "sha256:61bb3ccbf4bf32ad9af32da8badc24e888ae5231c617947e0f5401077f8b091f"}, - {file = "pycryptodome-3.19.0-cp35-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d49a6c715d8cceffedabb6adb7e0cbf41ae1a2ff4adaeec9432074a80627dea1"}, - {file = "pycryptodome-3.19.0-cp35-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e249a784cc98a29c77cea9df54284a44b40cafbfae57636dd2f8775b48af2434"}, - {file = "pycryptodome-3.19.0-cp35-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d033947e7fd3e2ba9a031cb2d267251620964705a013c5a461fa5233cc025270"}, - {file = "pycryptodome-3.19.0-cp35-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:84c3e4fffad0c4988aef0d5591be3cad4e10aa7db264c65fadbc633318d20bde"}, - {file = "pycryptodome-3.19.0-cp35-abi3-musllinux_1_1_i686.whl", hash = "sha256:139ae2c6161b9dd5d829c9645d781509a810ef50ea8b657e2257c25ca20efe33"}, - {file = "pycryptodome-3.19.0-cp35-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:5b1986c761258a5b4332a7f94a83f631c1ffca8747d75ab8395bf2e1b93283d9"}, - {file = "pycryptodome-3.19.0-cp35-abi3-win32.whl", hash = "sha256:536f676963662603f1f2e6ab01080c54d8cd20f34ec333dcb195306fa7826997"}, - {file = "pycryptodome-3.19.0-cp35-abi3-win_amd64.whl", hash = "sha256:04dd31d3b33a6b22ac4d432b3274588917dcf850cc0c51c84eca1d8ed6933810"}, - {file = "pycryptodome-3.19.0-pp27-pypy_73-manylinux2010_x86_64.whl", hash = "sha256:8999316e57abcbd8085c91bc0ef75292c8618f41ca6d2b6132250a863a77d1e7"}, - {file = "pycryptodome-3.19.0-pp27-pypy_73-win32.whl", hash = "sha256:a0ab84755f4539db086db9ba9e9f3868d2e3610a3948cbd2a55e332ad83b01b0"}, - {file = "pycryptodome-3.19.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0101f647d11a1aae5a8ce4f5fad6644ae1b22bb65d05accc7d322943c69a74a6"}, - {file = "pycryptodome-3.19.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c1601e04d32087591d78e0b81e1e520e57a92796089864b20e5f18c9564b3fa"}, - {file = "pycryptodome-3.19.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:506c686a1eee6c00df70010be3b8e9e78f406af4f21b23162bbb6e9bdf5427bc"}, - {file = "pycryptodome-3.19.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:7919ccd096584b911f2a303c593280869ce1af9bf5d36214511f5e5a1bed8c34"}, - {file = "pycryptodome-3.19.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:560591c0777f74a5da86718f70dfc8d781734cf559773b64072bbdda44b3fc3e"}, - {file = "pycryptodome-3.19.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1cc2f2ae451a676def1a73c1ae9120cd31af25db3f381893d45f75e77be2400"}, - {file = "pycryptodome-3.19.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:17940dcf274fcae4a54ec6117a9ecfe52907ed5e2e438fe712fe7ca502672ed5"}, - {file = "pycryptodome-3.19.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:d04f5f623a280fbd0ab1c1d8ecbd753193ab7154f09b6161b0f857a1a676c15f"}, - {file = "pycryptodome-3.19.0.tar.gz", hash = "sha256:bc35d463222cdb4dbebd35e0784155c81e161b9284e567e7e933d722e533331e"}, -] - -[[package]] -name = "pyrsistent" -version = "0.19.3" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pyrsistent-0.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:20460ac0ea439a3e79caa1dbd560344b64ed75e85d8703943e0b66c2a6150e4a"}, - {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c18264cb84b5e68e7085a43723f9e4c1fd1d935ab240ce02c0324a8e01ccb64"}, - {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b774f9288dda8d425adb6544e5903f1fb6c273ab3128a355c6b972b7df39dcf"}, - {file = "pyrsistent-0.19.3-cp310-cp310-win32.whl", hash = "sha256:5a474fb80f5e0d6c9394d8db0fc19e90fa540b82ee52dba7d246a7791712f74a"}, - {file = "pyrsistent-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:49c32f216c17148695ca0e02a5c521e28a4ee6c5089f97e34fe24163113722da"}, - {file = "pyrsistent-0.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f0774bf48631f3a20471dd7c5989657b639fd2d285b861237ea9e82c36a415a9"}, - {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab2204234c0ecd8b9368dbd6a53e83c3d4f3cab10ecaf6d0e772f456c442393"}, - {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e42296a09e83028b3476f7073fcb69ffebac0e66dbbfd1bd847d61f74db30f19"}, - {file = "pyrsistent-0.19.3-cp311-cp311-win32.whl", hash = "sha256:64220c429e42a7150f4bfd280f6f4bb2850f95956bde93c6fda1b70507af6ef3"}, - {file = "pyrsistent-0.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:016ad1afadf318eb7911baa24b049909f7f3bb2c5b1ed7b6a8f21db21ea3faa8"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4db1bd596fefd66b296a3d5d943c94f4fac5bcd13e99bffe2ba6a759d959a28"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aeda827381f5e5d65cced3024126529ddc4289d944f75e090572c77ceb19adbf"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:42ac0b2f44607eb92ae88609eda931a4f0dfa03038c44c772e07f43e738bcac9"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:e8f2b814a3dc6225964fa03d8582c6e0b6650d68a232df41e3cc1b66a5d2f8d1"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:c9bb60a40a0ab9aba40a59f68214eed5a29c6274c83b2cc206a359c4a89fa41b"}, - {file = "pyrsistent-0.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a2471f3f8693101975b1ff85ffd19bb7ca7dd7c38f8a81701f67d6b4f97b87d8"}, - {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc5d149f31706762c1f8bda2e8c4f8fead6e80312e3692619a75301d3dbb819a"}, - {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3311cb4237a341aa52ab8448c27e3a9931e2ee09561ad150ba94e4cfd3fc888c"}, - {file = "pyrsistent-0.19.3-cp38-cp38-win32.whl", hash = "sha256:f0e7c4b2f77593871e918be000b96c8107da48444d57005b6a6bc61fb4331b2c"}, - {file = "pyrsistent-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:c147257a92374fde8498491f53ffa8f4822cd70c0d85037e09028e478cababb7"}, - {file = "pyrsistent-0.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b735e538f74ec31378f5a1e3886a26d2ca6351106b4dfde376a26fc32a044edc"}, - {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99abb85579e2165bd8522f0c0138864da97847875ecbd45f3e7e2af569bfc6f2"}, - {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a8cb235fa6d3fd7aae6a4f1429bbb1fec1577d978098da1252f0489937786f3"}, - {file = "pyrsistent-0.19.3-cp39-cp39-win32.whl", hash = "sha256:c74bed51f9b41c48366a286395c67f4e894374306b197e62810e0fdaf2364da2"}, - {file = "pyrsistent-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:878433581fc23e906d947a6814336eee031a00e6defba224234169ae3d3d6a98"}, - {file = "pyrsistent-0.19.3-py3-none-any.whl", hash = "sha256:ccf0d6bd208f8111179f0c26fdf84ed7c3891982f2edaeae7422575f47e66b64"}, - {file = "pyrsistent-0.19.3.tar.gz", hash = "sha256:1a2994773706bbb4995c31a97bc94f1418314923bd1048c6d964837040376440"}, -] - -[[package]] -name = "pytest" -version = "7.4.2" -description = "pytest: simple powerful testing with Python" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pytest-7.4.2-py3-none-any.whl", hash = "sha256:1d881c6124e08ff0a1bb75ba3ec0bfd8b5354a01c194ddd5a0a870a48d99b002"}, - {file = "pytest-7.4.2.tar.gz", hash = "sha256:a766259cfab564a2ad52cb1aae1b881a75c3eb7e34ca3779697c23ed47c47069"}, -] - -[package.dependencies] -colorama = {version = "*", markers = "sys_platform == \"win32\""} -exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=0.12,<2.0" -tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} - -[package.extras] -testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] - -[[package]] -name = "pytest-asyncio" -version = "0.21.1" -description = "Pytest support for asyncio" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pytest-asyncio-0.21.1.tar.gz", hash = "sha256:40a7eae6dded22c7b604986855ea48400ab15b069ae38116e8c01238e9eeb64d"}, - {file = "pytest_asyncio-0.21.1-py3-none-any.whl", hash = "sha256:8666c1c8ac02631d7c51ba282e0c69a8a452b211ffedf2599099845da5c5c37b"}, -] - -[package.dependencies] -pytest = ">=7.0.0" - -[package.extras] -docs = ["sphinx (>=5.3)", "sphinx-rtd-theme (>=1.0)"] -testing = ["coverage (>=6.2)", "flaky (>=3.5.0)", "hypothesis (>=5.7.1)", "mypy (>=0.931)", "pytest-trio (>=0.7.0)"] - -[[package]] -name = "pytest-profiling" -version = "1.7.0" -description = "Profiling plugin for py.test" -optional = false -python-versions = "*" -files = [ - {file = "pytest-profiling-1.7.0.tar.gz", hash = "sha256:93938f147662225d2b8bd5af89587b979652426a8a6ffd7e73ec4a23e24b7f29"}, - {file = "pytest_profiling-1.7.0-py2.py3-none-any.whl", hash = "sha256:999cc9ac94f2e528e3f5d43465da277429984a1c237ae9818f8cfd0b06acb019"}, -] - -[package.dependencies] -gprof2dot = "*" -pytest = "*" -six = "*" - -[package.extras] -tests = ["pytest-virtualenv"] - -[[package]] -name = "pytest-xdist" -version = "3.3.1" -description = "pytest xdist plugin for distributed testing, most importantly across multiple CPUs" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pytest-xdist-3.3.1.tar.gz", hash = "sha256:d5ee0520eb1b7bcca50a60a518ab7a7707992812c578198f8b44fdfac78e8c93"}, - {file = "pytest_xdist-3.3.1-py3-none-any.whl", hash = "sha256:ff9daa7793569e6a68544850fd3927cd257cc03a7ef76c95e86915355e82b5f2"}, -] - -[package.dependencies] -execnet = ">=1.1" -pytest = ">=6.2.0" - -[package.extras] -psutil = ["psutil (>=3.0)"] -setproctitle = ["setproctitle"] -testing = ["filelock"] - -[[package]] -name = "python-dotenv" -version = "1.0.0" -description = "Read key-value pairs from a .env file and set them as environment variables" -optional = false -python-versions = ">=3.8" -files = [ - {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, - {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, -] - -[package.extras] -cli = ["click (>=5.0)"] - -[[package]] -name = "pywin32" -version = "306" -description = "Python for Window Extensions" -optional = false -python-versions = "*" -files = [ - {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, - {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, - {file = "pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407"}, - {file = "pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e"}, - {file = "pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a"}, - {file = "pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b"}, - {file = "pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e"}, - {file = "pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040"}, - {file = "pywin32-306-cp37-cp37m-win32.whl", hash = "sha256:1c73ea9a0d2283d889001998059f5eaaba3b6238f767c9cf2833b13e6a685f65"}, - {file = "pywin32-306-cp37-cp37m-win_amd64.whl", hash = "sha256:72c5f621542d7bdd4fdb716227be0dd3f8565c11b280be6315b06ace35487d36"}, - {file = "pywin32-306-cp38-cp38-win32.whl", hash = "sha256:e4c092e2589b5cf0d365849e73e02c391c1349958c5ac3e9d5ccb9a28e017b3a"}, - {file = "pywin32-306-cp38-cp38-win_amd64.whl", hash = "sha256:e8ac1ae3601bee6ca9f7cb4b5363bf1c0badb935ef243c4733ff9a393b1690c0"}, - {file = "pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802"}, - {file = "pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4"}, -] - -[[package]] -name = "pyyaml" -version = "6.0.1" -description = "YAML parser and emitter for Python" -optional = false -python-versions = ">=3.6" -files = [ - {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, - {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, - {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, - {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, - {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, - {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, - {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, - {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, - {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, - {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, - {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, - {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, - {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, - {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, - {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, - {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, - {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, - {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, - {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, - {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, - {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, -] - -[[package]] -name = "regex" -version = "2023.8.8" -description = "Alternative regular expression module, to replace re." -optional = false -python-versions = ">=3.6" -files = [ - {file = "regex-2023.8.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:88900f521c645f784260a8d346e12a1590f79e96403971241e64c3a265c8ecdb"}, - {file = "regex-2023.8.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3611576aff55918af2697410ff0293d6071b7e00f4b09e005d614686ac4cd57c"}, - {file = "regex-2023.8.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b8a0ccc8f2698f120e9e5742f4b38dc944c38744d4bdfc427616f3a163dd9de5"}, - {file = "regex-2023.8.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c662a4cbdd6280ee56f841f14620787215a171c4e2d1744c9528bed8f5816c96"}, - {file = "regex-2023.8.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cf0633e4a1b667bfe0bb10b5e53fe0d5f34a6243ea2530eb342491f1adf4f739"}, - {file = "regex-2023.8.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:551ad543fa19e94943c5b2cebc54c73353ffff08228ee5f3376bd27b3d5b9800"}, - {file = "regex-2023.8.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54de2619f5ea58474f2ac211ceea6b615af2d7e4306220d4f3fe690c91988a61"}, - {file = "regex-2023.8.8-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5ec4b3f0aebbbe2fc0134ee30a791af522a92ad9f164858805a77442d7d18570"}, - {file = "regex-2023.8.8-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3ae646c35cb9f820491760ac62c25b6d6b496757fda2d51be429e0e7b67ae0ab"}, - {file = "regex-2023.8.8-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ca339088839582d01654e6f83a637a4b8194d0960477b9769d2ff2cfa0fa36d2"}, - {file = "regex-2023.8.8-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:d9b6627408021452dcd0d2cdf8da0534e19d93d070bfa8b6b4176f99711e7f90"}, - {file = "regex-2023.8.8-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:bd3366aceedf274f765a3a4bc95d6cd97b130d1dda524d8f25225d14123c01db"}, - {file = "regex-2023.8.8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7aed90a72fc3654fba9bc4b7f851571dcc368120432ad68b226bd593f3f6c0b7"}, - {file = "regex-2023.8.8-cp310-cp310-win32.whl", hash = "sha256:80b80b889cb767cc47f31d2b2f3dec2db8126fbcd0cff31b3925b4dc6609dcdb"}, - {file = "regex-2023.8.8-cp310-cp310-win_amd64.whl", hash = "sha256:b82edc98d107cbc7357da7a5a695901b47d6eb0420e587256ba3ad24b80b7d0b"}, - {file = "regex-2023.8.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1e7d84d64c84ad97bf06f3c8cb5e48941f135ace28f450d86af6b6512f1c9a71"}, - {file = "regex-2023.8.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ce0f9fbe7d295f9922c0424a3637b88c6c472b75eafeaff6f910494a1fa719ef"}, - {file = "regex-2023.8.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:06c57e14ac723b04458df5956cfb7e2d9caa6e9d353c0b4c7d5d54fcb1325c46"}, - {file = "regex-2023.8.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e7a9aaa5a1267125eef22cef3b63484c3241aaec6f48949b366d26c7250e0357"}, - {file = "regex-2023.8.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b7408511fca48a82a119d78a77c2f5eb1b22fe88b0d2450ed0756d194fe7a9a"}, - {file = "regex-2023.8.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14dc6f2d88192a67d708341f3085df6a4f5a0c7b03dec08d763ca2cd86e9f559"}, - {file = "regex-2023.8.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:48c640b99213643d141550326f34f0502fedb1798adb3c9eb79650b1ecb2f177"}, - {file = "regex-2023.8.8-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0085da0f6c6393428bf0d9c08d8b1874d805bb55e17cb1dfa5ddb7cfb11140bf"}, - {file = "regex-2023.8.8-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:964b16dcc10c79a4a2be9f1273fcc2684a9eedb3906439720598029a797b46e6"}, - {file = "regex-2023.8.8-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7ce606c14bb195b0e5108544b540e2c5faed6843367e4ab3deb5c6aa5e681208"}, - {file = "regex-2023.8.8-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:40f029d73b10fac448c73d6eb33d57b34607f40116e9f6e9f0d32e9229b147d7"}, - {file = "regex-2023.8.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3b8e6ea6be6d64104d8e9afc34c151926f8182f84e7ac290a93925c0db004bfd"}, - {file = "regex-2023.8.8-cp311-cp311-win32.whl", hash = "sha256:942f8b1f3b223638b02df7df79140646c03938d488fbfb771824f3d05fc083a8"}, - {file = "regex-2023.8.8-cp311-cp311-win_amd64.whl", hash = "sha256:51d8ea2a3a1a8fe4f67de21b8b93757005213e8ac3917567872f2865185fa7fb"}, - {file = "regex-2023.8.8-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e951d1a8e9963ea51efd7f150450803e3b95db5939f994ad3d5edac2b6f6e2b4"}, - {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:704f63b774218207b8ccc6c47fcef5340741e5d839d11d606f70af93ee78e4d4"}, - {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22283c769a7b01c8ac355d5be0715bf6929b6267619505e289f792b01304d898"}, - {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:91129ff1bb0619bc1f4ad19485718cc623a2dc433dff95baadbf89405c7f6b57"}, - {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de35342190deb7b866ad6ba5cbcccb2d22c0487ee0cbb251efef0843d705f0d4"}, - {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b993b6f524d1e274a5062488a43e3f9f8764ee9745ccd8e8193df743dbe5ee61"}, - {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:3026cbcf11d79095a32d9a13bbc572a458727bd5b1ca332df4a79faecd45281c"}, - {file = "regex-2023.8.8-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:293352710172239bf579c90a9864d0df57340b6fd21272345222fb6371bf82b3"}, - {file = "regex-2023.8.8-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:d909b5a3fff619dc7e48b6b1bedc2f30ec43033ba7af32f936c10839e81b9217"}, - {file = "regex-2023.8.8-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:3d370ff652323c5307d9c8e4c62efd1956fb08051b0e9210212bc51168b4ff56"}, - {file = "regex-2023.8.8-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:b076da1ed19dc37788f6a934c60adf97bd02c7eea461b73730513921a85d4235"}, - {file = "regex-2023.8.8-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:e9941a4ada58f6218694f382e43fdd256e97615db9da135e77359da257a7168b"}, - {file = "regex-2023.8.8-cp36-cp36m-win32.whl", hash = "sha256:a8c65c17aed7e15a0c824cdc63a6b104dfc530f6fa8cb6ac51c437af52b481c7"}, - {file = "regex-2023.8.8-cp36-cp36m-win_amd64.whl", hash = "sha256:aadf28046e77a72f30dcc1ab185639e8de7f4104b8cb5c6dfa5d8ed860e57236"}, - {file = "regex-2023.8.8-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:423adfa872b4908843ac3e7a30f957f5d5282944b81ca0a3b8a7ccbbfaa06103"}, - {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ae594c66f4a7e1ea67232a0846649a7c94c188d6c071ac0210c3e86a5f92109"}, - {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e51c80c168074faa793685656c38eb7a06cbad7774c8cbc3ea05552d615393d8"}, - {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:09b7f4c66aa9d1522b06e31a54f15581c37286237208df1345108fcf4e050c18"}, - {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e73e5243af12d9cd6a9d6a45a43570dbe2e5b1cdfc862f5ae2b031e44dd95a8"}, - {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:941460db8fe3bd613db52f05259c9336f5a47ccae7d7def44cc277184030a116"}, - {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f0ccf3e01afeb412a1a9993049cb160d0352dba635bbca7762b2dc722aa5742a"}, - {file = "regex-2023.8.8-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:2e9216e0d2cdce7dbc9be48cb3eacb962740a09b011a116fd7af8c832ab116ca"}, - {file = "regex-2023.8.8-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:5cd9cd7170459b9223c5e592ac036e0704bee765706445c353d96f2890e816c8"}, - {file = "regex-2023.8.8-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:4873ef92e03a4309b3ccd8281454801b291b689f6ad45ef8c3658b6fa761d7ac"}, - {file = "regex-2023.8.8-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:239c3c2a339d3b3ddd51c2daef10874410917cd2b998f043c13e2084cb191684"}, - {file = "regex-2023.8.8-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:1005c60ed7037be0d9dea1f9c53cc42f836188227366370867222bda4c3c6bd7"}, - {file = "regex-2023.8.8-cp37-cp37m-win32.whl", hash = "sha256:e6bd1e9b95bc5614a7a9c9c44fde9539cba1c823b43a9f7bc11266446dd568e3"}, - {file = "regex-2023.8.8-cp37-cp37m-win_amd64.whl", hash = "sha256:9a96edd79661e93327cfeac4edec72a4046e14550a1d22aa0dd2e3ca52aec921"}, - {file = "regex-2023.8.8-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f2181c20ef18747d5f4a7ea513e09ea03bdd50884a11ce46066bb90fe4213675"}, - {file = "regex-2023.8.8-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a2ad5add903eb7cdde2b7c64aaca405f3957ab34f16594d2b78d53b8b1a6a7d6"}, - {file = "regex-2023.8.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9233ac249b354c54146e392e8a451e465dd2d967fc773690811d3a8c240ac601"}, - {file = "regex-2023.8.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:920974009fb37b20d32afcdf0227a2e707eb83fe418713f7a8b7de038b870d0b"}, - {file = "regex-2023.8.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd2b6c5dfe0929b6c23dde9624483380b170b6e34ed79054ad131b20203a1a63"}, - {file = "regex-2023.8.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:96979d753b1dc3b2169003e1854dc67bfc86edf93c01e84757927f810b8c3c93"}, - {file = "regex-2023.8.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2ae54a338191e1356253e7883d9d19f8679b6143703086245fb14d1f20196be9"}, - {file = "regex-2023.8.8-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2162ae2eb8b079622176a81b65d486ba50b888271302190870b8cc488587d280"}, - {file = "regex-2023.8.8-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:c884d1a59e69e03b93cf0dfee8794c63d7de0ee8f7ffb76e5f75be8131b6400a"}, - {file = "regex-2023.8.8-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:cf9273e96f3ee2ac89ffcb17627a78f78e7516b08f94dc435844ae72576a276e"}, - {file = "regex-2023.8.8-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:83215147121e15d5f3a45d99abeed9cf1fe16869d5c233b08c56cdf75f43a504"}, - {file = "regex-2023.8.8-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3f7454aa427b8ab9101f3787eb178057c5250478e39b99540cfc2b889c7d0586"}, - {file = "regex-2023.8.8-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f0640913d2c1044d97e30d7c41728195fc37e54d190c5385eacb52115127b882"}, - {file = "regex-2023.8.8-cp38-cp38-win32.whl", hash = "sha256:0c59122ceccb905a941fb23b087b8eafc5290bf983ebcb14d2301febcbe199c7"}, - {file = "regex-2023.8.8-cp38-cp38-win_amd64.whl", hash = "sha256:c12f6f67495ea05c3d542d119d270007090bad5b843f642d418eb601ec0fa7be"}, - {file = "regex-2023.8.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:82cd0a69cd28f6cc3789cc6adeb1027f79526b1ab50b1f6062bbc3a0ccb2dbc3"}, - {file = "regex-2023.8.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:bb34d1605f96a245fc39790a117ac1bac8de84ab7691637b26ab2c5efb8f228c"}, - {file = "regex-2023.8.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:987b9ac04d0b38ef4f89fbc035e84a7efad9cdd5f1e29024f9289182c8d99e09"}, - {file = "regex-2023.8.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9dd6082f4e2aec9b6a0927202c85bc1b09dcab113f97265127c1dc20e2e32495"}, - {file = "regex-2023.8.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7eb95fe8222932c10d4436e7a6f7c99991e3fdd9f36c949eff16a69246dee2dc"}, - {file = "regex-2023.8.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7098c524ba9f20717a56a8d551d2ed491ea89cbf37e540759ed3b776a4f8d6eb"}, - {file = "regex-2023.8.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b694430b3f00eb02c594ff5a16db30e054c1b9589a043fe9174584c6efa8033"}, - {file = "regex-2023.8.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b2aeab3895d778155054abea5238d0eb9a72e9242bd4b43f42fd911ef9a13470"}, - {file = "regex-2023.8.8-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:988631b9d78b546e284478c2ec15c8a85960e262e247b35ca5eaf7ee22f6050a"}, - {file = "regex-2023.8.8-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:67ecd894e56a0c6108ec5ab1d8fa8418ec0cff45844a855966b875d1039a2e34"}, - {file = "regex-2023.8.8-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:14898830f0a0eb67cae2bbbc787c1a7d6e34ecc06fbd39d3af5fe29a4468e2c9"}, - {file = "regex-2023.8.8-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:f2200e00b62568cfd920127782c61bc1c546062a879cdc741cfcc6976668dfcf"}, - {file = "regex-2023.8.8-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9691a549c19c22d26a4f3b948071e93517bdf86e41b81d8c6ac8a964bb71e5a6"}, - {file = "regex-2023.8.8-cp39-cp39-win32.whl", hash = "sha256:6ab2ed84bf0137927846b37e882745a827458689eb969028af8032b1b3dac78e"}, - {file = "regex-2023.8.8-cp39-cp39-win_amd64.whl", hash = "sha256:5543c055d8ec7801901e1193a51570643d6a6ab8751b1f7dd9af71af467538bb"}, - {file = "regex-2023.8.8.tar.gz", hash = "sha256:fcbdc5f2b0f1cd0f6a56cdb46fe41d2cce1e644e3b68832f3eeebc5fb0f7712e"}, -] - -[[package]] -name = "requests" -version = "2.31.0" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.7" -files = [ - {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, - {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "rlp" -version = "3.0.0" -description = "A package for Recursive Length Prefix encoding and decoding" -optional = false -python-versions = "*" -files = [ - {file = "rlp-3.0.0-py2.py3-none-any.whl", hash = "sha256:d2a963225b3f26795c5b52310e0871df9824af56823d739511583ef459895a7d"}, - {file = "rlp-3.0.0.tar.gz", hash = "sha256:63b0465d2948cd9f01de449d7adfb92d207c1aef3982f20310f8009be4a507e8"}, -] - -[package.dependencies] -eth-utils = ">=2.0.0,<3" - -[package.extras] -dev = ["Sphinx (>=1.6.5,<2)", "bumpversion (>=0.5.3,<1)", "flake8 (==3.4.1)", "hypothesis (==5.19.0)", "ipython", "pytest (>=6.2.5,<7)", "pytest-watch (>=4.1.0,<5)", "pytest-xdist", "setuptools (>=36.2.0)", "sphinx-rtd-theme (>=0.1.9)", "tox (>=2.9.1,<3)", "twine", "wheel"] -doc = ["Sphinx (>=1.6.5,<2)", "sphinx-rtd-theme (>=0.1.9)"] -lint = ["flake8 (==3.4.1)"] -rust-backend = ["rusty-rlp (>=0.2.1,<0.3)"] -test = ["hypothesis (==5.19.0)", "pytest (>=6.2.5,<7)", "tox (>=2.9.1,<3)"] - -[[package]] -name = "setuptools" -version = "68.2.2" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.8" -files = [ - {file = "setuptools-68.2.2-py3-none-any.whl", hash = "sha256:b454a35605876da60632df1a60f736524eb73cc47bbc9f3f1ef1b644de74fd2a"}, - {file = "setuptools-68.2.2.tar.gz", hash = "sha256:4ac1475276d2f1c48684874089fefcd83bd7162ddaafb81fac866ba0db282a87"}, -] - -[package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] -testing-integration = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "packaging (>=23.1)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] - -[[package]] -name = "six" -version = "1.16.0" -description = "Python 2 and 3 compatibility utilities" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] - -[[package]] -name = "sniffio" -version = "1.3.0" -description = "Sniff out which async library your code is running under" -optional = false -python-versions = ">=3.7" -files = [ - {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, - {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, -] - -[[package]] -name = "starknet-devnet" -version = "0.6.3" -description = "A local testnet for Starknet" -optional = false -python-versions = ">=3.9,<3.10" -files = [ - {file = "starknet_devnet-0.6.3-py3-none-any.whl", hash = "sha256:1df586bb40096c3ddb333f2b9f05045183d1058055cedb99334ef4d85f411fa8"}, - {file = "starknet_devnet-0.6.3.tar.gz", hash = "sha256:b31ecb9912ab092fe59c26c044719ab6cfea60b2416cdb519077e82d1f9829e0"}, -] - -[package.dependencies] -cairo-lang = "0.12.2" -cloudpickle = ">=2.1.0,<2.2.0" -crypto-cpp-py = ">=1.4.0,<1.5.0" -Flask = {version = ">=2.0.3,<2.1.0", extras = ["async"]} -flask-cors = ">=3.0.10,<3.1.0" -gunicorn = ">=20.1.0,<20.2.0" -jsonschema = ">=4.17.0,<4.18.0" -marshmallow = ">=3.17.0,<3.18.0" -marshmallow-dataclass = ">=8.4,<8.5" -poseidon-py = ">=0.1.3,<0.2.0" -pyyaml = ">=6.0.1,<6.1.0" -typing-extensions = ">=4.3.0,<4.4.0" -web3 = ">=6.0.0,<6.1.0" -Werkzeug = ">=2.0.3,<2.1.0" - -[[package]] -name = "starknet-py" -version = "0.17.1" -description = "A python SDK for Starknet" -optional = false -python-versions = ">=3.8,<3.12" -files = [ - {file = "starknet_py-0.17.1.tar.gz", hash = "sha256:279188516653a4eb0859dd661d65602e41eb0d0397d8a1776017abd3b4213bb5"}, -] - -[package.dependencies] -aiohttp = ">=3.8.4,<4.0.0" -asgiref = ">=3.4.1,<4.0.0" -crypto-cpp-py = ">=1.4.0,<2.0.0" -lark = ">=1.1.5,<2.0.0" -marshmallow = ">=3.15.0,<4.0.0" -marshmallow-dataclass = "<8.5.0" -marshmallow-oneofschema = ">=3.0.1,<4.0.0" -poseidon-py = ">=0.1.3,<0.2.0" -pycryptodome = ">=3.17,<4.0" -typing-extensions = ">=4.3.0,<5.0.0" - -[package.extras] -docs = ["enum-tools[sphinx] (==0.9.0.post1)", "furo (>=2023.5.20,<2024.0.0)", "sphinx (>=4.3.1,<8.0.0)"] - -[[package]] -name = "sympy" -version = "1.11.1" -description = "Computer algebra system (CAS) in Python" -optional = false -python-versions = ">=3.8" -files = [ - {file = "sympy-1.11.1-py3-none-any.whl", hash = "sha256:938f984ee2b1e8eae8a07b884c8b7a1146010040fccddc6539c54f401c8f6fcf"}, - {file = "sympy-1.11.1.tar.gz", hash = "sha256:e32380dce63cb7c0108ed525570092fd45168bdae2faa17e528221ef72e88658"}, -] - -[package.dependencies] -mpmath = ">=0.19" - -[[package]] -name = "termcolor" -version = "2.3.0" -description = "ANSI color formatting for output in terminal" -optional = false -python-versions = ">=3.7" -files = [ - {file = "termcolor-2.3.0-py3-none-any.whl", hash = "sha256:3afb05607b89aed0ffe25202399ee0867ad4d3cb4180d98aaf8eefa6a5f7d475"}, - {file = "termcolor-2.3.0.tar.gz", hash = "sha256:b5b08f68937f138fe92f6c089b99f1e2da0ae56c52b78bf7075fd95420fd9a5a"}, -] - -[package.extras] -tests = ["pytest", "pytest-cov"] - -[[package]] -name = "tomli" -version = "2.0.1" -description = "A lil' TOML parser" -optional = false -python-versions = ">=3.7" -files = [ - {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, - {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, -] - -[[package]] -name = "toolz" -version = "0.12.0" -description = "List processing tools and functional utilities" -optional = false -python-versions = ">=3.5" -files = [ - {file = "toolz-0.12.0-py3-none-any.whl", hash = "sha256:2059bd4148deb1884bb0eb770a3cde70e7f954cfbbdc2285f1f2de01fd21eb6f"}, - {file = "toolz-0.12.0.tar.gz", hash = "sha256:88c570861c440ee3f2f6037c4654613228ff40c93a6c25e0eba70d17282c6194"}, -] - -[[package]] -name = "typeguard" -version = "2.13.3" -description = "Run-time type checker for Python" -optional = false -python-versions = ">=3.5.3" -files = [ - {file = "typeguard-2.13.3-py3-none-any.whl", hash = "sha256:5e3e3be01e887e7eafae5af63d1f36c849aaa94e3a0112097312aabfa16284f1"}, - {file = "typeguard-2.13.3.tar.gz", hash = "sha256:00edaa8da3a133674796cf5ea87d9f4b4c367d77476e185e80251cc13dfbb8c4"}, -] - -[package.extras] -doc = ["sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["mypy", "pytest", "typing-extensions"] - -[[package]] -name = "typing-extensions" -version = "4.3.0" -description = "Backported and Experimental Type Hints for Python 3.7+" -optional = false -python-versions = ">=3.7" -files = [ - {file = "typing_extensions-4.3.0-py3-none-any.whl", hash = "sha256:25642c956049920a5aa49edcdd6ab1e06d7e5d467fc00e0506c44ac86fbfca02"}, - {file = "typing_extensions-4.3.0.tar.gz", hash = "sha256:e6d2677a32f47fc7eb2795db1dd15c1f34eff616bcaf2cfb5e997f854fa1c4a6"}, -] - -[[package]] -name = "typing-inspect" -version = "0.9.0" -description = "Runtime inspection utilities for typing module." -optional = false -python-versions = "*" -files = [ - {file = "typing_inspect-0.9.0-py3-none-any.whl", hash = "sha256:9ee6fc59062311ef8547596ab6b955e1b8aa46242d854bfc78f4f6b0eff35f9f"}, - {file = "typing_inspect-0.9.0.tar.gz", hash = "sha256:b23fc42ff6f6ef6954e4852c1fb512cdd18dbea03134f91f856a95ccc9461f78"}, -] - -[package.dependencies] -mypy-extensions = ">=0.3.0" -typing-extensions = ">=3.7.4" - -[[package]] -name = "urllib3" -version = "2.0.4" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.7" -files = [ - {file = "urllib3-2.0.4-py3-none-any.whl", hash = "sha256:de7df1803967d2c2a98e4b11bb7d6bd9210474c46e8a0401514e3a42a75ebde4"}, - {file = "urllib3-2.0.4.tar.gz", hash = "sha256:8d22f86aae8ef5e410d4f539fde9ce6b2113a001bb4d189e0aed70642d602b11"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[[package]] -name = "web3" -version = "6.0.0" -description = "web3.py" -optional = false -python-versions = ">=3.7.2" -files = [ - {file = "web3-6.0.0-py3-none-any.whl", hash = "sha256:abdeabec4c68e42caf2cc69eb0af026e0e15880ed9c514addfd2c363baae846f"}, - {file = "web3-6.0.0.tar.gz", hash = "sha256:6b925a19e4a0001337d8b2faa72577d6b7e8f9a8a9a0b98d8834cdf698cfc045"}, -] - -[package.dependencies] -aiohttp = ">=3.7.4.post0" -eth-abi = ">=4.0.0-b.2" -eth-account = ">=0.8.0" -eth-hash = {version = ">=0.5.1", extras = ["pycryptodome"]} -eth-typing = ">=3.0.0" -eth-utils = ">=2.1.0" -hexbytes = ">=0.1.0" -jsonschema = ">=4.0.0" -lru-dict = ">=1.1.6" -parsimonious = "0.9.0" -protobuf = ">=4.21.6" -pywin32 = {version = ">=223", markers = "platform_system == \"Windows\""} -requests = ">=2.16.0" -websockets = ">=10.0.0" - -[package.extras] -dev = ["black (>=22.1.0)", "build (>=0.9.0)", "bumpversion", "click (>=5.1)", "configparser (==3.5.0)", "contextlib2 (>=0.5.4)", "eth-tester[py-evm] (==v0.8.0-b.3)", "flake8 (==3.8.3)", "flaky (>=3.7.0)", "hypothesis (>=3.31.2)", "importlib-metadata (<5.0)", "ipfshttpclient (==0.8.0a2)", "isort (>=5.11.0)", "mock", "mypy (==0.910)", "pluggy (==0.13.1)", "py-geth (>=3.11.0)", "py-solc-x (>=1.1.1)", "pytest (>=6.2.5)", "pytest-asyncio (>=0.18.1)", "pytest-mock (>=1.10)", "pytest-pythonpath (>=0.3)", "pytest-watch (>=4.2)", "pytest-xdist (>=1.29)", "setuptools (>=38.6.0)", "sphinx (>=4.2.0)", "sphinx-rtd-theme (>=0.5.2)", "toposort (>=1.4)", "towncrier (==18.5.0)", "tox (>=3.18.0)", "tqdm (>4.32)", "twine (>=1.13)", "types-protobuf (==3.19.13)", "types-requests (>=2.26.1)", "types-setuptools (>=57.4.4)", "urllib3", "wheel", "when-changed (>=0.3.0)"] -docs = ["click (>=5.1)", "configparser (==3.5.0)", "contextlib2 (>=0.5.4)", "mock", "py-geth (>=3.11.0)", "py-solc-x (>=1.1.1)", "pytest (>=6.2.5)", "sphinx (>=4.2.0)", "sphinx-rtd-theme (>=0.5.2)", "toposort (>=1.4)", "towncrier (==18.5.0)", "urllib3", "wheel"] -ipfs = ["ipfshttpclient (==0.8.0a2)"] -linter = ["black (>=22.1.0)", "flake8 (==3.8.3)", "isort (>=5.11.0)", "mypy (==0.910)", "types-protobuf (==3.19.13)", "types-requests (>=2.26.1)", "types-setuptools (>=57.4.4)"] -tester = ["eth-tester[py-evm] (==v0.8.0-b.3)", "py-geth (>=3.11.0)"] - -[[package]] -name = "websockets" -version = "11.0.3" -description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" -optional = false -python-versions = ">=3.7" -files = [ - {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3ccc8a0c387629aec40f2fc9fdcb4b9d5431954f934da3eaf16cdc94f67dbfac"}, - {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d67ac60a307f760c6e65dad586f556dde58e683fab03323221a4e530ead6f74d"}, - {file = "websockets-11.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:84d27a4832cc1a0ee07cdcf2b0629a8a72db73f4cf6de6f0904f6661227f256f"}, - {file = "websockets-11.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffd7dcaf744f25f82190856bc26ed81721508fc5cbf2a330751e135ff1283564"}, - {file = "websockets-11.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7622a89d696fc87af8e8d280d9b421db5133ef5b29d3f7a1ce9f1a7bf7fcfa11"}, - {file = "websockets-11.0.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bceab846bac555aff6427d060f2fcfff71042dba6f5fca7dc4f75cac815e57ca"}, - {file = "websockets-11.0.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:54c6e5b3d3a8936a4ab6870d46bdd6ec500ad62bde9e44462c32d18f1e9a8e54"}, - {file = "websockets-11.0.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:41f696ba95cd92dc047e46b41b26dd24518384749ed0d99bea0a941ca87404c4"}, - {file = "websockets-11.0.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:86d2a77fd490ae3ff6fae1c6ceaecad063d3cc2320b44377efdde79880e11526"}, - {file = "websockets-11.0.3-cp310-cp310-win32.whl", hash = "sha256:2d903ad4419f5b472de90cd2d40384573b25da71e33519a67797de17ef849b69"}, - {file = "websockets-11.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:1d2256283fa4b7f4c7d7d3e84dc2ece74d341bce57d5b9bf385df109c2a1a82f"}, - {file = "websockets-11.0.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e848f46a58b9fcf3d06061d17be388caf70ea5b8cc3466251963c8345e13f7eb"}, - {file = "websockets-11.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aa5003845cdd21ac0dc6c9bf661c5beddd01116f6eb9eb3c8e272353d45b3288"}, - {file = "websockets-11.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b58cbf0697721120866820b89f93659abc31c1e876bf20d0b3d03cef14faf84d"}, - {file = "websockets-11.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:660e2d9068d2bedc0912af508f30bbeb505bbbf9774d98def45f68278cea20d3"}, - {file = "websockets-11.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c1f0524f203e3bd35149f12157438f406eff2e4fb30f71221c8a5eceb3617b6b"}, - {file = "websockets-11.0.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:def07915168ac8f7853812cc593c71185a16216e9e4fa886358a17ed0fd9fcf6"}, - {file = "websockets-11.0.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b30c6590146e53149f04e85a6e4fcae068df4289e31e4aee1fdf56a0dead8f97"}, - {file = "websockets-11.0.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:619d9f06372b3a42bc29d0cd0354c9bb9fb39c2cbc1a9c5025b4538738dbffaf"}, - {file = "websockets-11.0.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:01f5567d9cf6f502d655151645d4e8b72b453413d3819d2b6f1185abc23e82dd"}, - {file = "websockets-11.0.3-cp311-cp311-win32.whl", hash = "sha256:e1459677e5d12be8bbc7584c35b992eea142911a6236a3278b9b5ce3326f282c"}, - {file = "websockets-11.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:e7837cb169eca3b3ae94cc5787c4fed99eef74c0ab9506756eea335e0d6f3ed8"}, - {file = "websockets-11.0.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:9f59a3c656fef341a99e3d63189852be7084c0e54b75734cde571182c087b152"}, - {file = "websockets-11.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2529338a6ff0eb0b50c7be33dc3d0e456381157a31eefc561771ee431134a97f"}, - {file = "websockets-11.0.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34fd59a4ac42dff6d4681d8843217137f6bc85ed29722f2f7222bd619d15e95b"}, - {file = "websockets-11.0.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:332d126167ddddec94597c2365537baf9ff62dfcc9db4266f263d455f2f031cb"}, - {file = "websockets-11.0.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6505c1b31274723ccaf5f515c1824a4ad2f0d191cec942666b3d0f3aa4cb4007"}, - {file = "websockets-11.0.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f467ba0050b7de85016b43f5a22b46383ef004c4f672148a8abf32bc999a87f0"}, - {file = "websockets-11.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:9d9acd80072abcc98bd2c86c3c9cd4ac2347b5a5a0cae7ed5c0ee5675f86d9af"}, - {file = "websockets-11.0.3-cp37-cp37m-win32.whl", hash = "sha256:e590228200fcfc7e9109509e4d9125eace2042fd52b595dd22bbc34bb282307f"}, - {file = "websockets-11.0.3-cp37-cp37m-win_amd64.whl", hash = "sha256:b16fff62b45eccb9c7abb18e60e7e446998093cdcb50fed33134b9b6878836de"}, - {file = "websockets-11.0.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fb06eea71a00a7af0ae6aefbb932fb8a7df3cb390cc217d51a9ad7343de1b8d0"}, - {file = "websockets-11.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8a34e13a62a59c871064dfd8ffb150867e54291e46d4a7cf11d02c94a5275bae"}, - {file = "websockets-11.0.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4841ed00f1026dfbced6fca7d963c4e7043aa832648671b5138008dc5a8f6d99"}, - {file = "websockets-11.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a073fc9ab1c8aff37c99f11f1641e16da517770e31a37265d2755282a5d28aa"}, - {file = "websockets-11.0.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:68b977f21ce443d6d378dbd5ca38621755f2063d6fdb3335bda981d552cfff86"}, - {file = "websockets-11.0.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1a99a7a71631f0efe727c10edfba09ea6bee4166a6f9c19aafb6c0b5917d09c"}, - {file = "websockets-11.0.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:bee9fcb41db2a23bed96c6b6ead6489702c12334ea20a297aa095ce6d31370d0"}, - {file = "websockets-11.0.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4b253869ea05a5a073ebfdcb5cb3b0266a57c3764cf6fe114e4cd90f4bfa5f5e"}, - {file = "websockets-11.0.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:1553cb82942b2a74dd9b15a018dce645d4e68674de2ca31ff13ebc2d9f283788"}, - {file = "websockets-11.0.3-cp38-cp38-win32.whl", hash = "sha256:f61bdb1df43dc9c131791fbc2355535f9024b9a04398d3bd0684fc16ab07df74"}, - {file = "websockets-11.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:03aae4edc0b1c68498f41a6772d80ac7c1e33c06c6ffa2ac1c27a07653e79d6f"}, - {file = "websockets-11.0.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:777354ee16f02f643a4c7f2b3eff8027a33c9861edc691a2003531f5da4f6bc8"}, - {file = "websockets-11.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8c82f11964f010053e13daafdc7154ce7385ecc538989a354ccc7067fd7028fd"}, - {file = "websockets-11.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3580dd9c1ad0701169e4d6fc41e878ffe05e6bdcaf3c412f9d559389d0c9e016"}, - {file = "websockets-11.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f1a3f10f836fab6ca6efa97bb952300b20ae56b409414ca85bff2ad241d2a61"}, - {file = "websockets-11.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:df41b9bc27c2c25b486bae7cf42fccdc52ff181c8c387bfd026624a491c2671b"}, - {file = "websockets-11.0.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:279e5de4671e79a9ac877427f4ac4ce93751b8823f276b681d04b2156713b9dd"}, - {file = "websockets-11.0.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:1fdf26fa8a6a592f8f9235285b8affa72748dc12e964a5518c6c5e8f916716f7"}, - {file = "websockets-11.0.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:69269f3a0b472e91125b503d3c0b3566bda26da0a3261c49f0027eb6075086d1"}, - {file = "websockets-11.0.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:97b52894d948d2f6ea480171a27122d77af14ced35f62e5c892ca2fae9344311"}, - {file = "websockets-11.0.3-cp39-cp39-win32.whl", hash = "sha256:c7f3cb904cce8e1be667c7e6fef4516b98d1a6a0635a58a57528d577ac18a128"}, - {file = "websockets-11.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:c792ea4eabc0159535608fc5658a74d1a81020eb35195dd63214dcf07556f67e"}, - {file = "websockets-11.0.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:f2e58f2c36cc52d41f2659e4c0cbf7353e28c8c9e63e30d8c6d3494dc9fdedcf"}, - {file = "websockets-11.0.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de36fe9c02995c7e6ae6efe2e205816f5f00c22fd1fbf343d4d18c3d5ceac2f5"}, - {file = "websockets-11.0.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0ac56b661e60edd453585f4bd68eb6a29ae25b5184fd5ba51e97652580458998"}, - {file = "websockets-11.0.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e052b8467dd07d4943936009f46ae5ce7b908ddcac3fda581656b1b19c083d9b"}, - {file = "websockets-11.0.3-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:42cc5452a54a8e46a032521d7365da775823e21bfba2895fb7b77633cce031bb"}, - {file = "websockets-11.0.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e6316827e3e79b7b8e7d8e3b08f4e331af91a48e794d5d8b099928b6f0b85f20"}, - {file = "websockets-11.0.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8531fdcad636d82c517b26a448dcfe62f720e1922b33c81ce695d0edb91eb931"}, - {file = "websockets-11.0.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c114e8da9b475739dde229fd3bc6b05a6537a88a578358bc8eb29b4030fac9c9"}, - {file = "websockets-11.0.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e063b1865974611313a3849d43f2c3f5368093691349cf3c7c8f8f75ad7cb280"}, - {file = "websockets-11.0.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:92b2065d642bf8c0a82d59e59053dd2fdde64d4ed44efe4870fa816c1232647b"}, - {file = "websockets-11.0.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0ee68fe502f9031f19d495dae2c268830df2760c0524cbac5d759921ba8c8e82"}, - {file = "websockets-11.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dcacf2c7a6c3a84e720d1bb2b543c675bf6c40e460300b628bab1b1efc7c034c"}, - {file = "websockets-11.0.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b67c6f5e5a401fc56394f191f00f9b3811fe843ee93f4a70df3c389d1adf857d"}, - {file = "websockets-11.0.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d5023a4b6a5b183dc838808087033ec5df77580485fc533e7dab2567851b0a4"}, - {file = "websockets-11.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ed058398f55163a79bb9f06a90ef9ccc063b204bb346c4de78efc5d15abfe602"}, - {file = "websockets-11.0.3-py3-none-any.whl", hash = "sha256:6681ba9e7f8f3b19440921e99efbb40fc89f26cd71bf539e45d8c8a25c976dc6"}, - {file = "websockets-11.0.3.tar.gz", hash = "sha256:88fc51d9a26b10fc331be344f1781224a375b78488fc343620184e95a4b27016"}, -] - -[[package]] -name = "werkzeug" -version = "2.0.3" -description = "The comprehensive WSGI web application library." -optional = false -python-versions = ">=3.6" -files = [ - {file = "Werkzeug-2.0.3-py3-none-any.whl", hash = "sha256:1421ebfc7648a39a5c58c601b154165d05cf47a3cd0ccb70857cbdacf6c8f2b8"}, - {file = "Werkzeug-2.0.3.tar.gz", hash = "sha256:b863f8ff057c522164b6067c9e28b041161b4be5ba4d0daceeaa50a163822d3c"}, -] - -[package.extras] -watchdog = ["watchdog"] - -[[package]] -name = "yarl" -version = "1.9.2" -description = "Yet another URL library" -optional = false -python-versions = ">=3.7" -files = [ - {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c2ad583743d16ddbdf6bb14b5cd76bf43b0d0006e918809d5d4ddf7bde8dd82"}, - {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:82aa6264b36c50acfb2424ad5ca537a2060ab6de158a5bd2a72a032cc75b9eb8"}, - {file = "yarl-1.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c0c77533b5ed4bcc38e943178ccae29b9bcf48ffd1063f5821192f23a1bd27b9"}, - {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee4afac41415d52d53a9833ebae7e32b344be72835bbb589018c9e938045a560"}, - {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9bf345c3a4f5ba7f766430f97f9cc1320786f19584acc7086491f45524a551ac"}, - {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a96c19c52ff442a808c105901d0bdfd2e28575b3d5f82e2f5fd67e20dc5f4ea"}, - {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:891c0e3ec5ec881541f6c5113d8df0315ce5440e244a716b95f2525b7b9f3608"}, - {file = "yarl-1.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c3a53ba34a636a256d767c086ceb111358876e1fb6b50dfc4d3f4951d40133d5"}, - {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:566185e8ebc0898b11f8026447eacd02e46226716229cea8db37496c8cdd26e0"}, - {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2b0738fb871812722a0ac2154be1f049c6223b9f6f22eec352996b69775b36d4"}, - {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:32f1d071b3f362c80f1a7d322bfd7b2d11e33d2adf395cc1dd4df36c9c243095"}, - {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:e9fdc7ac0d42bc3ea78818557fab03af6181e076a2944f43c38684b4b6bed8e3"}, - {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:56ff08ab5df8429901ebdc5d15941b59f6253393cb5da07b4170beefcf1b2528"}, - {file = "yarl-1.9.2-cp310-cp310-win32.whl", hash = "sha256:8ea48e0a2f931064469bdabca50c2f578b565fc446f302a79ba6cc0ee7f384d3"}, - {file = "yarl-1.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:50f33040f3836e912ed16d212f6cc1efb3231a8a60526a407aeb66c1c1956dde"}, - {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:646d663eb2232d7909e6601f1a9107e66f9791f290a1b3dc7057818fe44fc2b6"}, - {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aff634b15beff8902d1f918012fc2a42e0dbae6f469fce134c8a0dc51ca423bb"}, - {file = "yarl-1.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a83503934c6273806aed765035716216cc9ab4e0364f7f066227e1aaea90b8d0"}, - {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b25322201585c69abc7b0e89e72790469f7dad90d26754717f3310bfe30331c2"}, - {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22a94666751778629f1ec4280b08eb11815783c63f52092a5953faf73be24191"}, - {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ec53a0ea2a80c5cd1ab397925f94bff59222aa3cf9c6da938ce05c9ec20428d"}, - {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:159d81f22d7a43e6eabc36d7194cb53f2f15f498dbbfa8edc8a3239350f59fe7"}, - {file = "yarl-1.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:832b7e711027c114d79dffb92576acd1bd2decc467dec60e1cac96912602d0e6"}, - {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:95d2ecefbcf4e744ea952d073c6922e72ee650ffc79028eb1e320e732898d7e8"}, - {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d4e2c6d555e77b37288eaf45b8f60f0737c9efa3452c6c44626a5455aeb250b9"}, - {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:783185c75c12a017cc345015ea359cc801c3b29a2966c2655cd12b233bf5a2be"}, - {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:b8cc1863402472f16c600e3e93d542b7e7542a540f95c30afd472e8e549fc3f7"}, - {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:822b30a0f22e588b32d3120f6d41e4ed021806418b4c9f0bc3048b8c8cb3f92a"}, - {file = "yarl-1.9.2-cp311-cp311-win32.whl", hash = "sha256:a60347f234c2212a9f0361955007fcf4033a75bf600a33c88a0a8e91af77c0e8"}, - {file = "yarl-1.9.2-cp311-cp311-win_amd64.whl", hash = "sha256:be6b3fdec5c62f2a67cb3f8c6dbf56bbf3f61c0f046f84645cd1ca73532ea051"}, - {file = "yarl-1.9.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:38a3928ae37558bc1b559f67410df446d1fbfa87318b124bf5032c31e3447b74"}, - {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac9bb4c5ce3975aeac288cfcb5061ce60e0d14d92209e780c93954076c7c4367"}, - {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3da8a678ca8b96c8606bbb8bfacd99a12ad5dd288bc6f7979baddd62f71c63ef"}, - {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13414591ff516e04fcdee8dc051c13fd3db13b673c7a4cb1350e6b2ad9639ad3"}, - {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf74d08542c3a9ea97bb8f343d4fcbd4d8f91bba5ec9d5d7f792dbe727f88938"}, - {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e7221580dc1db478464cfeef9b03b95c5852cc22894e418562997df0d074ccc"}, - {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:494053246b119b041960ddcd20fd76224149cfea8ed8777b687358727911dd33"}, - {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:52a25809fcbecfc63ac9ba0c0fb586f90837f5425edfd1ec9f3372b119585e45"}, - {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:e65610c5792870d45d7b68c677681376fcf9cc1c289f23e8e8b39c1485384185"}, - {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:1b1bba902cba32cdec51fca038fd53f8beee88b77efc373968d1ed021024cc04"}, - {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:662e6016409828ee910f5d9602a2729a8a57d74b163c89a837de3fea050c7582"}, - {file = "yarl-1.9.2-cp37-cp37m-win32.whl", hash = "sha256:f364d3480bffd3aa566e886587eaca7c8c04d74f6e8933f3f2c996b7f09bee1b"}, - {file = "yarl-1.9.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6a5883464143ab3ae9ba68daae8e7c5c95b969462bbe42e2464d60e7e2698368"}, - {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5610f80cf43b6202e2c33ba3ec2ee0a2884f8f423c8f4f62906731d876ef4fac"}, - {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b9a4e67ad7b646cd6f0938c7ebfd60e481b7410f574c560e455e938d2da8e0f4"}, - {file = "yarl-1.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:83fcc480d7549ccebe9415d96d9263e2d4226798c37ebd18c930fce43dfb9574"}, - {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5fcd436ea16fee7d4207c045b1e340020e58a2597301cfbcfdbe5abd2356c2fb"}, - {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84e0b1599334b1e1478db01b756e55937d4614f8654311eb26012091be109d59"}, - {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3458a24e4ea3fd8930e934c129b676c27452e4ebda80fbe47b56d8c6c7a63a9e"}, - {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:838162460b3a08987546e881a2bfa573960bb559dfa739e7800ceeec92e64417"}, - {file = "yarl-1.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4e2d08f07a3d7d3e12549052eb5ad3eab1c349c53ac51c209a0e5991bbada78"}, - {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:de119f56f3c5f0e2fb4dee508531a32b069a5f2c6e827b272d1e0ff5ac040333"}, - {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:149ddea5abf329752ea5051b61bd6c1d979e13fbf122d3a1f9f0c8be6cb6f63c"}, - {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:674ca19cbee4a82c9f54e0d1eee28116e63bc6fd1e96c43031d11cbab8b2afd5"}, - {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:9b3152f2f5677b997ae6c804b73da05a39daa6a9e85a512e0e6823d81cdad7cc"}, - {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5415d5a4b080dc9612b1b63cba008db84e908b95848369aa1da3686ae27b6d2b"}, - {file = "yarl-1.9.2-cp38-cp38-win32.whl", hash = "sha256:f7a3d8146575e08c29ed1cd287068e6d02f1c7bdff8970db96683b9591b86ee7"}, - {file = "yarl-1.9.2-cp38-cp38-win_amd64.whl", hash = "sha256:63c48f6cef34e6319a74c727376e95626f84ea091f92c0250a98e53e62c77c72"}, - {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:75df5ef94c3fdc393c6b19d80e6ef1ecc9ae2f4263c09cacb178d871c02a5ba9"}, - {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c027a6e96ef77d401d8d5a5c8d6bc478e8042f1e448272e8d9752cb0aff8b5c8"}, - {file = "yarl-1.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f3b078dbe227f79be488ffcfc7a9edb3409d018e0952cf13f15fd6512847f3f7"}, - {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59723a029760079b7d991a401386390c4be5bfec1e7dd83e25a6a0881859e716"}, - {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b03917871bf859a81ccb180c9a2e6c1e04d2f6a51d953e6a5cdd70c93d4e5a2a"}, - {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c1012fa63eb6c032f3ce5d2171c267992ae0c00b9e164efe4d73db818465fac3"}, - {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a74dcbfe780e62f4b5a062714576f16c2f3493a0394e555ab141bf0d746bb955"}, - {file = "yarl-1.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c56986609b057b4839968ba901944af91b8e92f1725d1a2d77cbac6972b9ed1"}, - {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2c315df3293cd521033533d242d15eab26583360b58f7ee5d9565f15fee1bef4"}, - {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:b7232f8dfbd225d57340e441d8caf8652a6acd06b389ea2d3222b8bc89cbfca6"}, - {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:53338749febd28935d55b41bf0bcc79d634881195a39f6b2f767870b72514caf"}, - {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:066c163aec9d3d073dc9ffe5dd3ad05069bcb03fcaab8d221290ba99f9f69ee3"}, - {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8288d7cd28f8119b07dd49b7230d6b4562f9b61ee9a4ab02221060d21136be80"}, - {file = "yarl-1.9.2-cp39-cp39-win32.whl", hash = "sha256:b124e2a6d223b65ba8768d5706d103280914d61f5cae3afbc50fc3dfcc016623"}, - {file = "yarl-1.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:61016e7d582bc46a5378ffdd02cd0314fb8ba52f40f9cf4d9a5e7dbef88dee18"}, - {file = "yarl-1.9.2.tar.gz", hash = "sha256:04ab9d4b9f587c06d801c2abfe9317b77cdf996c65a90d5e84ecc45010823571"}, -] - -[package.dependencies] -idna = ">=2.0" -multidict = ">=4.0" - -[[package]] -name = "zipp" -version = "3.17.0" -description = "Backport of pathlib-compatible object wrapper for zip files" -optional = false -python-versions = ">=3.8" -files = [ - {file = "zipp-3.17.0-py3-none-any.whl", hash = "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31"}, - {file = "zipp-3.17.0.tar.gz", hash = "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0"}, -] - -[package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"] - -[metadata] -lock-version = "2.0" -python-versions = ">=3.9,<3.10" -content-hash = "829ee41fcfe965e027b176dbd62291348958c3ec6d92684d7619317b61d39a79" diff --git a/protostar.toml b/protostar.toml deleted file mode 100644 index 8d3f9718..00000000 --- a/protostar.toml +++ /dev/null @@ -1,29 +0,0 @@ -[project] -protostar-version = "0.9.1" -lib-path = "contracts/lib" -cairo-path = ["contracts/lib/cairo_contracts/src"] -compiled-contracts-dir = "contracts/build" - -[contracts] -balance = ["contracts/src/Balance.cairo"] -proxy = [ - "contracts/lib/cairo_contracts/src/openzeppelin/upgrades/presets/Proxy.cairo" -] -erc20_mintable = [ - "contracts/lib/cairo_contracts/src/openzeppelin/token/erc20/presets/ERC20Mintable.cairo" -] -erc20_upgradeable = [ - "contracts/lib/cairo_contracts/src/openzeppelin/token/erc20/presets/ERC20Upgradeable.cairo" -] -erc721_mintable_burnable = [ - "contracts/lib/cairo_contracts/src/openzeppelin/token/erc721/presets/ERC721MintableBurnable.cairo" -] -udc = [ - "contracts/lib/cairo_contracts/src/openzeppelin/utils/presets/UniversalDeployer.cairo" -] -oz_account = [ - "contracts/lib/cairo_contracts/src/openzeppelin/account/presets/Account.cairo" -] -oz_account_upgradable = [ - "contracts/src/AccountUpgradable.cairo" -] diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 00000000..a9e38bec --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,6 @@ +name: monorepo + +environment: + sdk: ">=3.0.0 <4.0.0" +dev_dependencies: + melos: ^6.0.0 diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index 77833f3e..00000000 --- a/pyproject.toml +++ /dev/null @@ -1,27 +0,0 @@ -[tool.poetry] -name = "scripts" -version = "0.1.0" -description = "Helper python scripts to test the dart SDK" -authors = ["gabsn "] - -[tool.poetry.scripts] -deploy = "scripts.python.commands.deploy:main" -declare = "scripts.python.commands.declare:main" -declarev2 = "scripts.python.commands.declarev2:main" -devnet = "scripts.python.commands.devnet:main" -interact = "scripts.python.commands.interact:main" - -[tool.poetry.dependencies] -python = ">=3.9,<3.10" -starknet-devnet = "0.6.3" -cairo-lang = "0.12.2" -starknet-py = "0.17.1" -autopep8 = "^2.0.0" -cairo-nile = "^0.14.0" -fire = "^0.4.0" - -[tool.poetry.dev-dependencies] - -[build-system] -requires = ["poetry-core>=1.0.0"] -build-backend = "poetry.core.masonry.api" diff --git a/scripts/python/client.py b/scripts/python/client.py deleted file mode 100644 index 43b3d5a3..00000000 --- a/scripts/python/client.py +++ /dev/null @@ -1,25 +0,0 @@ -from starknet_py.net.gateway_client import GatewayClient -from starknet_py.net.account.account import Account -from starknet_py.net.signer.stark_curve_signer import KeyPair - - -from scripts.python.config import Config, get_config - - -def get_account(config: Config): - client = GatewayClient( - net={ - "feeder_gateway_url": f"{config.gateway_base_url}/feeder_gateway", - "gateway_url": f"{config.gateway_base_url}/gateway", - } - ) - key_pair = KeyPair.from_private_key(config.deployer_account_private_key) - account = Account( - client=client, - address=config.deployer_account_address, - key_pair=key_pair, - chain=config.chain_id, - ) - - return account - diff --git a/scripts/python/commands/declare.py b/scripts/python/commands/declare.py deleted file mode 100644 index fb16ebc9..00000000 --- a/scripts/python/commands/declare.py +++ /dev/null @@ -1,28 +0,0 @@ - -import fire -from pathlib import Path - -from scripts.python.config import COMPILED_CONTRACTS_PATH, MAX_FEE, get_config -from scripts.python.client import get_account - - -async def declare(contract_name: str, env="local", max_fee=MAX_FEE): - config = get_config(env) - account = get_account(config) - - compiled_contract = Path( - f"{COMPILED_CONTRACTS_PATH}/{contract_name}.json").read_text() - - declare_tx = await account.sign_declare_transaction( - compiled_contract=compiled_contract, max_fee=max_fee - ) - declare = await account.client.declare( - transaction=declare_tx - ) - print(f"Wait for tx: {hex(declare.transaction_hash)}") - await account.client.wait_for_tx(declare.transaction_hash, check_interval=2) - return declare.class_hash - - -def main(): - fire.Fire(declare) diff --git a/scripts/python/commands/declarev2.py b/scripts/python/commands/declarev2.py deleted file mode 100644 index 64b5e9fb..00000000 --- a/scripts/python/commands/declarev2.py +++ /dev/null @@ -1,43 +0,0 @@ - -import fire -from pathlib import Path - -from starknet_py.common import create_casm_class -from starknet_py.hash.casm_class_hash import compute_casm_class_hash - -from scripts.python.config import COMPILED_CONTRACTS_PATH, MAX_FEE, get_config -from scripts.python.client import get_account - - -async def declarev2(contract_path: str, contract_casm_path: str, env="local", max_fee=MAX_FEE): - config = get_config(env) - account = get_account(config) - - compiled_contract = Path(contract_path).read_text() - contract_compiled_casm = Path(contract_casm_path).read_text() - - # contract_compiled_casm is a string containing the content of the starknet-sierra-compile (.casm file) - casm_class = create_casm_class(contract_compiled_casm) - - # Compute Casm class hash - casm_class_hash = compute_casm_class_hash(casm_class) - # Create Declare v2 transaction - declare_v2_transaction = await account.sign_declare_v2_transaction( - # compiled_contract is a string containing the content of the starknet-compile (.json file) - compiled_contract=compiled_contract, - compiled_class_hash=casm_class_hash, - max_fee=max_fee, - ) - - # Send Declare v2 transaction - resp = await account.client.declare(transaction=declare_v2_transaction) - print(f"Wait for tx: {hex(resp.transaction_hash)}") - await account.client.wait_for_tx(resp.transaction_hash, check_interval=2) - - sierra_class_hash = resp.class_hash - print(f"Sierra class hash: {hex(sierra_class_hash)}") - return sierra_class_hash - - -def main(): - fire.Fire(declarev2) diff --git a/scripts/python/commands/deploy.py b/scripts/python/commands/deploy.py deleted file mode 100644 index 52614ce0..00000000 --- a/scripts/python/commands/deploy.py +++ /dev/null @@ -1,158 +0,0 @@ -from typing import List -import fire -from pathlib import Path -import json - -from starknet_py.net.udc_deployer.deployer import Deployer -from starknet_py.common import create_sierra_compiled_contract -from starkware.starknet.compiler.compile import get_selector_from_name -from starknet_py.cairo.felt import ( - encode_shortstring, -) - -from scripts.python.client import get_account -from scripts.python.commands.declare import declare -from scripts.python.commands.declarev2 import declarev2 -from scripts.python.config import COMPILED_CONTRACTS_PATH, COMPILED_CAIRO1_CONTRACTS_PATH, MAX_FEE, SALT, get_config - - -async def deploy_balance(env="local", max_fee=MAX_FEE, salt=SALT): - print("Deploying balance contract...") - config = get_config(env) - - balance_hash = await declare("balance", env=env, max_fee=max_fee) - print(f"Class hash for balance: {balance_hash}") - - balance_abi = json.loads( - Path(f"{COMPILED_CONTRACTS_PATH}/balance_abi.json").read_text()) - - deploy_call, address = Deployer().create_contract_deployment( - salt=salt, - class_hash=balance_hash, - abi=balance_abi, - calldata={"answer_": 42} - ) - print(f"Deploying to address: {hex(address)}") - - account = get_account(config) - - invoke_tx = await account.sign_invoke_transaction(calls=[deploy_call], max_fee=max_fee) - resp = await account.client.send_transaction(invoke_tx) - - print(f"Waiting for tx: {hex(resp.transaction_hash)}") - await account.client.wait_for_tx(resp.transaction_hash) - - print("Done.") - - -async def deploy_erc20_upgradeable(name=encode_shortstring("starknet.dart"), - symbol=encode_shortstring("DART"), - decimals=18, - initial_supply=1000, - recipient=None, - proxy_admin=None, - max_fee=MAX_FEE, - env="local"): - print("Deploying erc20_upgradeable contract...") - config = get_config(env) - - recipient = recipient or config.deployer_account_address - proxy_admin = proxy_admin or config.deployer_account_address - - implem_hash = await declare("erc20_upgradeable", env=env, max_fee=max_fee) - selector = get_selector_from_name("initializer") - calldata = [ - name, - symbol, - decimals, - initial_supply, 0, # Uint256 - recipient, - proxy_admin, - ] - await _deploy_upgradeable(implem_hash=implem_hash, selector=selector, calldata=calldata, env=env, max_fee=max_fee) - -async def deploy_erc20_cairo1(name=encode_shortstring("starknet.dart"), - symbol=encode_shortstring("DART"), - decimals=18, - initial_supply=1000, - recipient=None, - env="local", - max_fee=MAX_FEE, - salt=SALT): - print("Deploying Cairo1 ERC20 contract") - config = get_config(env) - - account = get_account(config) - - recipient = recipient or config.deployer_account_address - sierra_path = Path(f"{COMPILED_CAIRO1_CONTRACTS_PATH}/erc20_sierra.txt") - casm_path = Path(f"{COMPILED_CAIRO1_CONTRACTS_PATH}/erc20_compiled.txt") - implem_hash = await declarev2(sierra_path, casm_path, env=env, max_fee=max_fee) - print(f"Class hash for Cairo1 ERC20: {hex(implem_hash)}") - - abi = create_sierra_compiled_contract(compiled_contract=sierra_path.read_text()).abi - - - constructor_args = { - "name_": encode_shortstring("Starknet.dart"), - "symbol_": encode_shortstring("DART"), - "decimals_": 18, - "initial_supply": 1000, - "recipient": account.address, - } - deploy_call, address = Deployer().create_contract_deployment( - salt=salt, - class_hash=implem_hash, - abi=json.loads(abi), - calldata=constructor_args, - cairo_version=1, # note the `cairo_version` parameter - ) - print(f"Deploying to address: {hex(address)}") - invoke_tx = await account.sign_invoke_transaction(calls=[deploy_call], max_fee=max_fee) - resp = await account.client.send_transaction(invoke_tx) - - print(f"Waiting for tx: {hex(resp.transaction_hash)}") - await account.client.wait_for_tx(resp.transaction_hash) - - print("Done.") - -def main(): - fire.Fire({ - "balance": deploy_balance, - "erc20_upgradeable": deploy_erc20_upgradeable, - "erc20_cairo1": deploy_erc20_cairo1, - }) - - -async def _deploy_upgradeable(implem_hash: str, - selector=0, - calldata=[], - max_fee=MAX_FEE, - env="local"): - config = get_config(env) - - account = get_account(config) - - proxy_hash = await declare("proxy", env) - proxy_abi = json.loads( - Path(f"{COMPILED_CONTRACTS_PATH}/proxy_abi.json").read_text()) - - deploy_call, address = Deployer().create_contract_deployment( - salt=SALT, - class_hash=proxy_hash, - abi=proxy_abi, - calldata={ - "implementation_hash": implem_hash, - "selector": selector, - "calldata": calldata, - } - ) - print(f"Deploying to address: {hex(address)}") - - invoke_tx = await account.sign_invoke_transaction(calls=[deploy_call], max_fee=max_fee) - resp = await account.client.send_transaction(invoke_tx) - - print(f"Waiting for tx: {hex(resp.transaction_hash)}") - await account.client.wait_for_tx(resp.transaction_hash) - - print("Done.") diff --git a/scripts/python/commands/devnet.py b/scripts/python/commands/devnet.py deleted file mode 100644 index 01451c1d..00000000 --- a/scripts/python/commands/devnet.py +++ /dev/null @@ -1,23 +0,0 @@ -import fire -import subprocess - -from scripts.python.commands.deploy import deploy_balance, deploy_erc20_upgradeable - -# FIXME: 2023-04-26: --disable-rpc-request-validation until infura update pathfinder with fix for -# https://github.com/eqlabs/pathfinder/issues/989 -command = ''' -poetry run starknet-devnet --host 0.0.0.0 --seed 0 --disable-rpc-request-validation -''' - - -def start(): - subprocess.run(command, shell=True) - - -async def setup(): - await deploy_balance() - await deploy_erc20_upgradeable() - - -def main(): - fire.Fire() diff --git a/scripts/python/commands/interact.py b/scripts/python/commands/interact.py deleted file mode 100644 index bb1bfb72..00000000 --- a/scripts/python/commands/interact.py +++ /dev/null @@ -1,54 +0,0 @@ -import json -import fire -from pathlib import Path - -from scripts.python.config import COMPILED_CONTRACTS_PATH, MAX_FEE, get_config -from scripts.python.client import get_account -from starknet_py.contract import Contract - - -async def get_balance(env="local"): - contract = _get_balance_contract(env) - result = await contract.functions['get_balance'].call() - return result.balance - -async def get_answer(env="local"): - contract = _get_balance_contract(env) - result = (await contract.functions['get_answer'].call()).answer - return result - -async def increase_balance(amount=1, max_fee=MAX_FEE, env="local"): - contract = _get_balance_contract(env) - await contract.functions["increase_balance"].invoke( - amount, max_fee=max_fee - ) - new_balance = await get_balance() - return new_balance - -async def sum(a=1, b=2, env="local"): - contract = _get_balance_contract(env) - result = (await contract.functions['sum'].call(a, b)).sum - return result - - -def main(): - fire.Fire({ - "get_balance": get_balance, - "get_answer": get_answer, - "increase_balance": increase_balance, - "sum": sum, - }) - - -def _get_balance_contract( - env: str, - address="0x5b017aae9bfb8fea994d27ab1e8a75d18d2788891f808043168b3829c17a9b7", - contract_name="balance" -): - config = get_config(env) - account = get_account(config) - abi = json.loads( - Path(f"{COMPILED_CONTRACTS_PATH}/{contract_name}_abi.json").read_text()) - return Contract( - address=address, abi=abi, provider=account) - diff --git a/scripts/python/config.py b/scripts/python/config.py deleted file mode 100644 index 16604e9a..00000000 --- a/scripts/python/config.py +++ /dev/null @@ -1,52 +0,0 @@ -import os -from dotenv import load_dotenv - -from starknet_py.net.models.chains import StarknetChainId - -COMPILED_CONTRACTS_PATH = "contracts/build" -COMPILED_CAIRO1_CONTRACTS_PATH = "contracts/cairo1/artifacts" - -MAX_FEE = int(1e16) -SALT = 1 - -DEVNET_ACCOUNT0_ADDRESS = int( - 0x7e00d496e324876bbc8531f2d9a82bf154d1a04a50218ee74cdd372f75a551a) -DEVNET_ACCOUNT0_PRIVATE_KEY = int(0xe3e70682c2094cac629f6fbed82c07cd) - -load_dotenv() # take environment variables from .env. - - -class Config: - def __init__(self, - env: str, - gateway_base_url="http://127.0.0.1:5050/", - chain_id=StarknetChainId.TESTNET, - deployer_account_address=DEVNET_ACCOUNT0_ADDRESS, - deployer_account_private_key=DEVNET_ACCOUNT0_PRIVATE_KEY, - ): - self.env = env - self.gateway_base_url = gateway_base_url - self.chain_id = chain_id - self.deployer_account_address = deployer_account_address - self.deployer_account_private_key = deployer_account_private_key - - -local_config = Config(env="local") - - -def get_config(env: str): - if env == "local": - return local_config - if env == "testnet": - ACCOUNT_ADDRESS = int(os.environ['STARKNET_ACCOUNT_ADDRESS'], 0) - ACCOUNT_PRIVATE_KEY = int( - os.environ['STARKNET_ACCOUNT_PRIVATE_KEY'], 0) - - return Config( - env="testnet", - gateway_base_url="https://alpha4.starknet.io", - deployer_account_address=ACCOUNT_ADDRESS, - deployer_account_private_key=ACCOUNT_PRIVATE_KEY, - ) - else: - raise Exception(f"{env} not a valid env")